MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

A lightweight CLI tool that connects MCP servers to Claude Desktop (and other compatible clients) with a single command—eliminating manual configuration and setup friction.

Created 4/5/2026
Updated about 4 hours ago
Repository documentation and setup instructions

🚀 connect-mcp

Connect any MCP server to Claude Desktop in seconds — no config editing, no guesswork.


⚡ The Problem

Integrating an MCP server into Claude Desktop usually means:

  • Finding config file manually
  • Editing JSON
  • Debugging errors blindly
  • Restarting app repeatedly

One mistake → everything breaks ❌


✅ The Solution

npx connect-mcp --url  claude

👉 Done. Your MCP server is connected.


🚀 Quick Start

npx connect-mcp --url http://localhost:8000/mcp claude

Restart Claude Desktop → Your tools are live ✅


🔌 3 Ways to Connect MCP

1️⃣ CLI (Recommended)

npx connect-mcp --url  claude

Example:

npx connect-mcp --url https://your-domain.com/mcp claude

2️⃣ Direct URL (Auto Claude Mode)

npx connect-mcp --url 

👉 Automatically connects to Claude


3️⃣ Interactive Mode

npx connect-mcp

👉 Prompts you for:

  • MCP URL
  • Platform

⚠️ IMPORTANT (Very Critical)

✅ Always use: /mcp

❌ Never use: /mcp/sse

👉 /sse is an internal endpoint — will FAIL


🧠 How It Works

Claude expects config like:

{
  "mcpServers": {
    "loan": {
      "transport": {
        "type": "http",
        "url": "http://localhost:8000/mcp"
      }
    }
  }
}

👉 This tool:

  • Finds your config file
  • Safely updates it
  • Validates structure
  • Avoids breaking existing config

📂 Config Location

| OS | Path | |---------|----------------------------------------------------------------------| | Windows | %APPDATA%\Claude\claude_desktop_config.json | | macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |


⚙️ Requirements

  • Node.js >= 16
  • Claude Desktop installed

🧪 Example MCP Server

npx connect-mcp --url http://localhost:8000/mcp claude

Then in Claude:

"Create a loan for Rahul of 5000"

👉 Your MCP tool gets called automatically ✅


🔥 Supported Transport

| Type | Supported | |------------------|-----------| | HTTP (SSE) | ✅ | | Local Command | ❌ (coming soon) |


🧩 Platform Support

| Platform | Status | |----------------|--------| | Claude Desktop | ✅ | | Cursor | 🚧 | | VS Code | 🚧 |


❓ FAQ

Do I need to restart Claude?
Yes — required.

Will this overwrite my config?
No — only updates mcpServers.

Does this support ngrok?
⚠️ Not reliable (SSE issues). Use instead:

  • localhost (best for local dev)
  • Cloudflare Tunnel (recommended for production)

Can I use my own MCP server?
Yes — that's the main use case.


🚀 Roadmap

  • [ ] Cursor support
  • [ ] VS Code support
  • [ ] MCP validation
  • [ ] Tool discovery preview
  • [ ] Cloud deployment helpers

🤝 Contributing

PRs welcome.


📜 License

MIT © theprathameshpund

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/theprathameshpund/connect-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "theprathameshpund-connect-mcp": { "command": "git", "args": [ "clone", "https://github.com/theprathameshpund/connect-mcp" ] } } }