MCP Catalogs
Home

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.

ai-llmdeveloper-toolsweb-scraping
1
Forks
2
Open issues
1 mo ago
Last commit
2d ago
Indexed

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:

you:Content creators browsing trending projects and assets
you:Developers integrating WebSim data into their applications
you:Community managers monitoring user activity and engagement
you:Researchers analyzing WebSim's content ecosystem
you:Does this MCP server require authentication?
you:How does the server handle rate limits?
you:Can I use this server with MCP clients other than Claude Desktop?

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 README
  • 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

Comparable tools

smithery-platformgithub-mcp-serverweb-scraping-mcp

Installation

Installation

  1. Clone the repository:
git clone https://github.com/minimax/websim-mcp-server.git
cd websim-mcp-server
  1. Install dependencies:
npm install
  1. 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
  1. Run the server:
npm start

FAQ

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.