websimm
by gigachadtrey·★ 0·Score 36
Comprehensive MCP server for WebSim API, providing access to projects, users, feeds, assets, and comments with robust pagination and error handling.
Overview
The WebSim MCP server serves as a comprehensive bridge between the Model Context Protocol and WebSim's extensive public API. It exposes well-organized tools for interacting with various aspects of the WebSim ecosystem, including project management, user profiles, content feeds, asset discovery, and community features. The server includes robust error handling, pagination support, and input validation, making it suitable for production environments that need to programmatically access WebSim data.
Try asking AI
After installing, here are 7 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're working with WebSim's platform and need programmatic access to projects, users, and content through standardized MCP tools.
When NOT to choose this
Not suitable for applications requiring write access to WebSim data as this server only provides read-only access to the public API.
Tools this server exposes
12 tools extracted from the READMEget_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
Comparable tools
Installation
Installation
- Clone the repository:
git clone https://github.com/minimax/websim-mcp-server.git
cd websim-mcp-server- Install dependencies:
npm install- Configure your MCP client:
Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"websim": {
"command": "node",
"args": ["/path/to/websim-mcp-server/server.js"],
"env": {}
}
}
}Generic MCP Setup
Copy mcp.json to your MCP configuration directory:
cp mcp.json ~/.config/claude/mcp-servers/websim.json- Run the server:
npm startFAQ
- Does this MCP server require authentication?
- No, this server uses WebSim's public API endpoints and doesn't require authentication.
- How does the server handle rate limits?
- The server includes built-in timeouts, pagination support, and error recovery mechanisms to gracefully handle API rate limits.
- Can I use this server with MCP clients other than Claude Desktop?
- Yes, the server includes configuration for Smithery and provides a generic mcp.json file for other MCP implementations.
Compare websimm with
Last updated · Auto-generated from public README + GitHub signals.