uberall-mcp-server
by uberall·★ 1·综合分 34
Uberall MCP 服务器提供通过 AI 助手管理企业列表和社交媒体的功能。
概述
这个 MCP 服务器将 AI 助手与 Uberall API 连接起来,使 AI 能够管理跨多个平台的企业列表、位置和社交媒体存在。使用 Kotlin 构建,提供查找企业、管理位置以及在 Google 和 Facebook 等平台创建社交媒体帖子的综合工具。服务器文档完善,包含清晰的安装说明和针对各种 MCP 客户端的示例。
试试问 AI
装完之后,这里有 6 个你可以让 AI 做的事:
什么时候选它
如果您已经在使用 Uberall 进行企业列表管理,并希望将其与 AI 工作流程集成以用于社交媒体发布和位置管理,请选择此 MCP 服务器。
什么时候不要选它
如果您需要 Uberall 之外的跨平台企业管理功能,或者没有 Uberall API 账户访问权限,请不要选择此服务器。
此 server 暴露的工具
从 README 抽取出 4 个工具find_businessesfind_businesses(query: string)Find businesses that the user has access to by name, address, or identifier
find_locationsfind_locations(query: string?, businessIds: string[]?)Find locations that belong to specific businesses with optional filtering
create_social_postcreate_social_post(title: string?, description: string, directories: string[], publicationDate: string, locations: string[])Create social media posts for specified locations across platforms
search_social_postssearch_social_posts(max: number?, offset: number?, locationIds: string[], businessIds: string[], statuses: string[], directories: string[], minPublicationDate: string?, maxPublicationDate: string?)Search and filter existing social posts by various criteria
可对比工具
安装
安装选项
- **下载预构建的 JAR 文件**
```bash # 下载最新版本 curl -L -o uberall-mcp-server.jar https://github.com/uberall/uberall-mcp-server/releases/latest/download/uberall-mcp-server.jar
# 设置您的凭据 export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here"
# 运行服务器 java -jar uberall-mcp-server.jar ```
- **使用 Docker**
``bash 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 ``
- **从源代码构建**
```bash 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 ```
Claude Desktop 配置
在您的 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"
}
}
}
}FAQ
- 需要哪些环境变量?
- 服务器需要两个环境变量:UBERALL_URL(您的 API 端点)和 UBERALL_ACCESS_TOKEN(您的 API 访问令牌)。
- 需要哪个版本的 Java?
- 需要 Java 17 或更高版本。您可以使用 'java -version' 检查您的版本。
- 如何创建社交媒体帖子?
- 使用 'create_social_post' 工具,需要以下参数:description(描述)、directories(平台名称,大写)、publicationDate(发布日期)和 locations(位置 ID)。
uberall-mcp-server 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。