drio
Open app

MCPServerProject

Source

created from MCP server demo

Catalog onlyCatalog onlySTDIO

Overview

MCPServerProject is a project created from an MCP server demo, aimed at providing a platform for server management and development.

To use MCPServerProject, clone the repository from GitHub and follow the setup instructions provided in the README file.

  • Easy setup and configuration for server management - Integration with various tools for enhanced functionality - Community support and documentation available on GitHub
  1. Setting up a local server for development purposes
  2. Testing server configurations and deployments
  3. Learning about server management through practical examples

Add to your AI client

Use these steps to connect MCPServerProject in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcpserverproject-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpserverproject-biswapm"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcpserverproject-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpserverproject-biswapm"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcpserverproject-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpserverproject-biswapm"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcpserverproject-biswapm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpserverproject-biswapm"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpserverproject-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpserverproject-biswapm"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpserverproject-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpserverproject-biswapm"
      ]
    }
  }
}

FAQ

Is MCPServerProject free to use?

Yes! MCPServerProject is open-source and free to use for everyone.

Where can I find the documentation?

Documentation is available in the GitHub repository under the 'docs' folder.

How can I contribute to MCPServerProject?

Contributions are welcome! You can submit issues or pull requests on the GitHub repository.