MCP Catalogs
首页

websimm

by gigachadtrey·0·综合分 36

WebSim API 的全面 MCP 服务器,提供项目、用户、动态、资源和评论访问功能,具有分页和错误处理能力。

ai-llmdeveloper-toolsweb-scraping
1
Forks
2
活跃 Issue
1 个月前
最近提交
2 天前
收录于

概述

WebSim MCP 服务器是模型上下文协议与 WebSim 广泛公共 API 之间的全面桥梁。它暴露了组织良好的工具,用于与 WebSim 生态系统的各个方面交互,包括项目管理、用户资料、内容动态、资源发现和社区功能。该服务器包含强大的错误处理、分页支持和输入验证,使其适合需要以编程方式访问 WebSim 数据的生产环境。

试试问 AI

装完之后,这里有 7 个你可以让 AI 做的事:

:内容创作者浏览热门项目和资源
:开发人员将 WebSim 数据集成到他们的应用程序中
:社区经理监控用户活动和参与度
:研究人员分析 WebSim 的内容生态系统
:这个 MCP 服务器需要身份验证吗?
:服务器如何处理速率限制?
:我可以将此服务器与 Claude Desktop 之外的 MCP 客户端一起使用吗?

什么时候选它

如果您正在使用 WebSim 平台,并且需要通过标准化的 MCP 工具以编程方式访问项目、用户和内容,请选择这个 MCP server。

什么时候不要选它

不适用于需要写入 WebSim 数据的应用程序,因为此服务器仅提供对公共 API 的只读访问。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • get_project_by_idproject_id: string

    Retrieve a specific WebSim project by its ID

  • get_project_by_sluguser: string, slug: string

    Get a project by username and slug

  • list_all_projectslimit?: number, offset?: number

    List all public projects with optional pagination

  • get_useruser: string

    Retrieve comprehensive information about a specific user

  • get_trending_feedlimit?: number, offset?: number

    Get trending projects and content

  • search_assetsquery: string, limit?: number, offset?: number

    Search 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?: number

    Read community comments on a project

  • search_usersquery: string, limit?: number, offset?: number

    Find users by username or other criteria

  • get_user_followinguser: string, limit?: number, offset?: number

    Get the list of users a specific user is following

  • get_project_statsproject_id: string

    Get detailed analytics and statistics for a project

  • health_check

    Check the health and connectivity of the API

可对比工具

smithery-platformgithub-mcp-serverweb-scraping-mcp

安装

安装

  1. 克隆仓库:
git clone https://github.com/minimax/websim-mcp-server.git
cd websim-mcp-server
  1. 安装依赖项:
npm install
  1. 配置您的 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
  1. 运行服务器:
npm start

FAQ

这个 MCP 服务器需要身份验证吗?
不需要,此服务器使用 WebSim 的公共 API 端点,不需要身份验证。
服务器如何处理速率限制?
服务器内置超时、分页支持和错误恢复机制,可以优雅地处理 API 速率限制。
我可以将此服务器与 Claude Desktop 之外的 MCP 客户端一起使用吗?
可以,服务器包含 Smithery 的配置,并提供了适用于其他 MCP 实现的通用 mcp.json 文件。

websimm 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。