A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/uberall/uberall-mcp-server below:

uberall/uberall-mcp-server: A Model Context Protocol (MCP) server for Uberall API integration

A Model Context Protocol (MCP) server that integrates with the Uberall API, enabling AI assistants to seamlessly manage business listings, locations, and social media presence across multiple platforms.

The Model Context Protocol allows AI assistants like Claude, Cursor, or VS Code Copilot to connect to external tools and data sources. This server acts as a bridge between AI assistants and the powerful Uberall platform.

This enables seamless integration with LLMs like Claude, Cursor, or Language Model APIs for comprehensive business management workflows.

📦 Option 1: Download Pre-built JAR
# Download the latest release
curl -L -o uberall-mcp-server.jar https://github.com/uberall/uberall-mcp-server/releases/latest/download/uberall-mcp-server.jar

# Set your credentials
export UBERALL_URL="https://sandbox.uberall.com"
export UBERALL_ACCESS_TOKEN="your_access_token_here"

# Run the server
java -jar uberall-mcp-server.jar
export UBERALL_URL="https://sandbox.uberall.com"
export UBERALL_ACCESS_TOKEN="your_access_token_here"
docker run --rm -i -e UBERALL_ACCESS_TOKEN -e UBERALL_URL uberall/uberall-mcp-server:latest
🛠️ Option 3: Build from Source
git clone https://github.com/uberall/uberall-mcp-server.git
cd uberall-mcp-server
./gradlew shadowJar

export UBERALL_URL="https://sandbox.uberall.com"
export UBERALL_ACCESS_TOKEN="your_access_token_here"
java -jar build/libs/uberall-mcp-server.jar

⚠️ Important: This server requires Java 17+. If you get UnsupportedClassVersionError, you're running an older Java version. Use java -version to check your version.

Required Environment Variables

Before running the server, you must set these environment variables:

Get Your Uberall API Access Token:

To obtain your API access token, follow the official Uberall documentation: 📖 API Authentication Guide

Download the latest JAR from GitHub Releases:

curl -L -o uberall-mcp-server.jar https://github.com/uberall/uberall-mcp-server/releases/latest/download/uberall-mcp-server.jar

Manual download:

  1. Visit GitHub Releases
  2. Download uberall-mcp-server.jar from the latest release

Then run:

# Set environment variables
export UBERALL_URL="https://sandbox.uberall.com"
export UBERALL_ACCESS_TOKEN="your_access_token_here"
java -jar uberall-mcp-server.jar
🧠 Configure with AI Tools

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "uberall-mcp-server": {
      "command": ["java", "-jar", "/path/to/uberall-mcp-server.jar"],
      "env": {
        "UBERALL_ACCESS_TOKEN": "your_access_token_here",
        "UBERALL_URL": "https://sandbox.uberall.com"
      }
    }
  }
}
Other MCP Clients (Cursor, VS Code, etc.)

For other MCP-compatible tools, you can use this general configuration approach:

  1. Create an mcp.json file in your project:
  1. Add the following configuration to the file:
{
  "mcpServers": {
    "uberall-mcp-server": {
      "command": "java",
      "args": ["-jar", "/path/to/uberall-mcp-server.jar"],
      "type": "stdio",
      "env": {
        "UBERALL_ACCESS_TOKEN": "your_access_token_here",
        "UBERALL_URL": "https://sandbox.uberall.com"
      }
    }
  }
}
  1. Save the file and restart your IDE/tool. You should now be able to access all the tools!

Other MCP Clients: List of popular MCP clients are available here.

💡 Tip: Replace /path/to/uberall-mcp-server.jar with the actual path where you downloaded the JAR file.

Using the pre-built Docker image (Recommended)
export UBERALL_ACCESS_TOKEN="your_access_token_here"
export UBERALL_URL="https://sandbox.uberall.com"
docker run --rm -i -e UBERALL_ACCESS_TOKEN -e UBERALL_URL uberall/uberall-mcp-server:latest
🧠 Use With Claude Desktop

Configure in your claude_desktop_config.json:

{
  "mcpServers": {
    "uberall-mcp-server": {
      "command": [
        "docker", "run", "--rm", "-i", 
        "-e", "UBERALL_ACCESS_TOKEN", 
        "-e", "UBERALL_URL", 
        "uberall/uberall-mcp-server:latest"
      ],
      "env": {
        "UBERALL_ACCESS_TOKEN": "your_access_token_here",
        "UBERALL_URL": "https://sandbox.uberall.com"
      }
    }
  }
}
🧠 Use With Other MCP Clients (Cursor, VS Code, etc.)

For other MCP-compatible tools using Docker, use this configuration:

  1. Create an mcp.json file in your project:
  1. Add the following configuration to the file:
{
  "mcpServers": {
    "uberall-mcp-server": {
      "command": "docker",
      "args": ["run", "--rm", "-i", 
      "-e", "UBERALL_ACCESS_TOKEN", 
      "-e", "UBERALL_URL", 
      "uberall/uberall-mcp-server:latest"],
      "type": "stdio",
      "env": {
        "UBERALL_ACCESS_TOKEN": "your_access_token_here",
        "UBERALL_URL": "https://sandbox.uberall.com"
      }
    }
  }
}
  1. Save the file and restart your IDE/tool. You should now be able to access all the tools!

The MCP server provides the following tools for interacting with the Uberall API:

Find businesses that the user has access to. Business IDs can be used to create social posts and find locations.

Parameters:

Returns: List of businesses with their IDs and names

Find locations that belong to businesses. Location IDs are required for creating social posts.

Parameters:

Returns: List of locations with IDs, names, business information, and city Note: Location IDs returned should be used in create_social_post unless specified otherwise

Create a social media post for specified locations and platforms.

Parameters:

Returns: Created social post object with platform-specific links and status

Search and filter existing social posts accessible by the user.

Parameters (all optional):

Returns: Array of social posts matching the filter criteria

Basic Usage with Claude Desktop

Once configured, you can use natural language to interact with your Uberall data:

"Find all my coffee shop locations in Berlin"
→ Uses find_businesses + find_locations

"Create a holiday promotion post for all my restaurants, scheduled for December 25th"
→ Uses find_businesses + find_locations + create_social_post

"Show me all my social posts from last month that are still active"
→ Uses search_social_posts with date filters
  1. Find your businesses: "Show me my business listings"
  2. Get locations: "What locations do I have for [business name]?"
  3. Create social posts: "Create a promotional post for Black Friday at all my retail locations"
  4. Monitor posts: "Show me all scheduled social posts for this week"

The server implements comprehensive error handling with clear, actionable error messages:

{
  "isError": true,
  "content": [
    {
      "type": "text",
      "text": "Error: Publication date is required"
    }
  ]
}
"Configuration Error: UBERALL_URL environment variable is required"

Solution: Set the required environment variables before running:

export UBERALL_URL="https://sandbox.uberall.com"
export UBERALL_ACCESS_TOKEN="your_token_here"
"Error: UBERALL_ACCESS_TOKEN environment variable is required"

Solution: Ensure your access token is valid and properly set:

export UBERALL_ACCESS_TOKEN="your_valid_token"
Build fails with Gradle wrapper error

Solution: Use system Gradle instead:

gradle build
gradle shadowJar
Docker container fails to start

Solution: Ensure environment variables are passed correctly:

docker run --rm -i -e UBERALL_ACCESS_TOKEN="$UBERALL_ACCESS_TOKEN" -e UBERALL_URL="$UBERALL_URL" uberall-mcp-server
"Invalid publication date format" error

Solution: Use ISO 8601 format with timezone:

2024-12-06T14:30:00+01:00
Empty response from API calls

Possible causes:

Solution: Check your access token permissions and network connectivity.

For additional debugging information, check the application logs for detailed error messages and stack traces.

If you encounter issues not covered here:

  1. Check your environment variable configuration
  2. Verify your access token has the required permissions
  3. Ensure you're using a supported Uberall API endpoint
  4. Check the application logs for detailed error information

We welcome contributions! Please see our Contributing Guide for details.

git clone https://github.com/uberall/uberall-mcp-server.git
cd uberall-mcp-server
cp src/test/resources/test-config-example.properties src/test/resources/test-config.properties
# Edit test-config.properties with your test credentials
./gradlew test

MIT License © 2025 Uberall GmbH


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4