Uberall MCP Server

A **Model Context Protocol (MCP)** server that integrates with the **Uberall API**, enabling AI assistants to seamlessly manage business listings

Remote serverstreamable-http

What is the Uberall MCP server?

Uberall mcp server lets Claude, Cursor and other MCP clients work with Uberall directly. 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.

What Uberall does

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.

Tools it exposes

Once connected, the assistant can call these 6 tools directly:

  • Authentication — Clear messages for invalid access tokens
  • Prerequisites — The Prerequisites tool exposed by this server
  • find_businesses — Find businesses that the user has access to. Business IDs can be used to create social posts and find locations
  • find_locations — Find locations that belong to businesses. Location IDs are required for creating social posts
  • create_social_post — Create a social media post for specified locations and platforms
  • search_social_posts — Search and filter existing social posts accessible by the user

Installing the uberall mcp server

The server is distributed via a container image as uberall/uberall-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 3 environment variables: UBERALL_ACCESS_TOKEN, UBERALL_URL, UBERALL_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Java 17 or higher (verify with java -version) - Docker (alternative to Java installation) - Gradle (only if building from source) > ⚠️ Important: This server requires Java 17+. If you get UnsupportedClassVersionError, you're running an older Java version. Use java -version to check your version.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Uberall sits in that group, and the shape of its toolset — Authentication, Prerequisites, find_businesses among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by uberall.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the uberall mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
AuthenticationClear messages for invalid access tokens
PrerequisitesThe Prerequisites tool exposed by this server.
find_businessesFind businesses that the user has access to. Business IDs can be used to create social posts and find locations.
find_locationsFind locations that belong to businesses. Location IDs are required for creating social posts.
create_social_postCreate a social media post for specified locations and platforms.
search_social_postsSearch and filter existing social posts accessible by the user.

How to install the Uberall MCP server

{
  "mcpServers": {
    "uberall": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "uberall/uberall-mcp-server"],
      "env": {
        "UBERALL_ACCESS_TOKEN": "your-value",
        "UBERALL_URL": "your-value",
        "UBERALL_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Java 17 or higher (verify with java -version) - Docker (alternative to Java installation) - Gradle (only if building from source) > ⚠️ Important: This server requires Java 17+. If you get UnsupportedClassVersionError, you're running an older Java version. Use java -version to check your version.
VariableDescriptionRequired
UBERALL_ACCESS_TOKENCredential the server authenticates with.Yes
UBERALL_URLEndpoint or connection string the server talks to.Yes
UBERALL_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Uberall to Authentication.
  • Use Uberall to Prerequisites.
  • Use Uberall to find businesses.

Frequently asked questions

It connects Uberall to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (Authentication, Prerequisites, find_businesses, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Uberall directly.