drio
Open app

100-tool-mcp-server-json-example

Source

My last working mcp-server Claude app JSON

Catalog onlyCatalog onlySTDIO

Overview

100-tool-mcp-server-json-example is a project that provides working configurations for setting up MCP servers, aimed at helping users avoid common pitfalls in server setup.

To use this project, refer to the provided configurations and examples in the GitHub repository. Ensure to check the original repositories for any additional installation steps required.

  • Provides working configurations for MCP servers - Includes a single example setup for reference - Aims to simplify the server setup process
  1. Setting up MCP servers for development purposes.
  2. Learning about server configurations and setups.
  3. Troubleshooting common server setup issues.

Add to your AI client

Use these steps to connect 100-tool-mcp-server-json-example 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": {
    "100-tool-mcp-server-json-example-angrysky56": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-100-tool-mcp-server-json-example-angrysky56"
      ]
    }
  }
}

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": {
    "100-tool-mcp-server-json-example-angrysky56": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-100-tool-mcp-server-json-example-angrysky56"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "100-tool-mcp-server-json-example-angrysky56": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-100-tool-mcp-server-json-example-angrysky56"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "100-tool-mcp-server-json-example-angrysky56": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-100-tool-mcp-server-json-example-angrysky56"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "100-tool-mcp-server-json-example-angrysky56": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-100-tool-mcp-server-json-example-angrysky56"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "100-tool-mcp-server-json-example-angrysky56": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-100-tool-mcp-server-json-example-angrysky56"
      ]
    }
  }
}

FAQ

Can I use these configurations for any MCP server?

These configurations are tailored for specific setups, so it's important to check compatibility with your server version.

Is there support available if I encounter issues?

Support is primarily through the GitHub repository's issue tracker, where you can ask questions and report problems.

Are these configurations guaranteed to work?

While these configurations have worked for the author, results may vary based on individual setups and environments.