websimm
by gigachadtrey·★ 0·综合分 36
WebSim API 的全面 MCP 服务器,提供项目、用户、动态、资源和评论访问功能,具有分页和错误处理能力。
概述
WebSim MCP 服务器是模型上下文协议与 WebSim 广泛公共 API 之间的全面桥梁。它暴露了组织良好的工具,用于与 WebSim 生态系统的各个方面交互,包括项目管理、用户资料、内容动态、资源发现和社区功能。该服务器包含强大的错误处理、分页支持和输入验证,使其适合需要以编程方式访问 WebSim 数据的生产环境。
试试问 AI
装完之后,这里有 7 个你可以让 AI 做的事:
什么时候选它
如果您正在使用 WebSim 平台,并且需要通过标准化的 MCP 工具以编程方式访问项目、用户和内容,请选择这个 MCP server。
什么时候不要选它
不适用于需要写入 WebSim 数据的应用程序,因为此服务器仅提供对公共 API 的只读访问。
此 server 暴露的工具
从 README 抽取出 12 个工具get_project_by_idproject_id: stringRetrieve a specific WebSim project by its ID
get_project_by_sluguser: string, slug: stringGet a project by username and slug
list_all_projectslimit?: number, offset?: numberList all public projects with optional pagination
get_useruser: stringRetrieve comprehensive information about a specific user
get_trending_feedlimit?: number, offset?: numberGet trending projects and content
search_assetsquery: string, limit?: number, offset?: numberSearch for assets and resources
bulk_asset_searchassets: Array<{query: string, limit?: number}>Search for multiple assets in a single request
get_project_commentsproject_id: string, limit?: number, offset?: numberRead community comments on a project
search_usersquery: string, limit?: number, offset?: numberFind users by username or other criteria
get_user_followinguser: string, limit?: number, offset?: numberGet the list of users a specific user is following
get_project_statsproject_id: stringGet detailed analytics and statistics for a project
health_checkCheck the health and connectivity of the API
可对比工具
安装
安装
- 克隆仓库:
git clone https://github.com/minimax/websim-mcp-server.git
cd websim-mcp-server- 安装依赖项:
npm install- 配置您的 MCP 客户端:
Claude Desktop
添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"websim": {
"command": "node",
"args": ["/path/to/websim-mcp-server/server.js"],
"env": {}
}
}
}通用 MCP 设置
将 mcp.json 复制到您的 MCP 配置目录:
cp mcp.json ~/.config/claude/mcp-servers/websim.json- 运行服务器:
npm startFAQ
- 这个 MCP 服务器需要身份验证吗?
- 不需要,此服务器使用 WebSim 的公共 API 端点,不需要身份验证。
- 服务器如何处理速率限制?
- 服务器内置超时、分页支持和错误恢复机制,可以优雅地处理 API 速率限制。
- 我可以将此服务器与 Claude Desktop 之外的 MCP 客户端一起使用吗?
- 可以,服务器包含 Smithery 的配置,并提供了适用于其他 MCP 实现的通用 mcp.json 文件。
websimm 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。