install-this-mcp
v0.2.1
Published
Generate installation guides for MCP servers across different clients
Maintainers
Readme
MCP Installation Guide
This package and Cloudflare Worker generate comprehensive installation guides for MCP (Model Context Protocol) servers across different clients.
Package Usage
const {
generateMCPConfig,
generateMCPInstallationGuide,
} = require("mcp-installation-guide");
// Get configuration objects
const configs = generateMCPConfig("https://api.example.com/mcp", "My Server");
// Get markdown guide
const markdown = generateMCPInstallationGuide(
"https://api.example.com/mcp",
"My Server"
);Worker Usage
The Cloudflare Worker is hosted at installthismcp.com and provides:
- Landing page: Visit the root URL to access a form for entering server details
- Guide generation: Visit
/{serverName}?url={mcpUrl}to generate a styled HTML guide
Examples
- Landing page: https://installthismcp.com
- Direct guide: https://installthismcp.com/Weather%20Server?url=https://api.example.com/mcp
Development
- Install dependencies:
npm install - Test locally:
wrangler dev - Deploy:
wrangler publish
FAQ
Does this support local MCPs?
No, this is currently out of scope for us. installthismcp.com only supports remote MCPs. However, please reach out if you want to contribute and maintain this part.
Does this support MCPs requiring API keys?
No, also this is out of scope, and we are working towards a world where every client offers one-click installation without complex configuration instructions. Currently only public MCPs (without auth) or MCPs with OAuth (according to the MCP protocol spec) are supported.
Can you add LLM client XYZ?
We favor clients with wide adoption, but less popular clients are also welcome if they have one-click-install deeplink support and support oauth. To add a client, please open a PR altering index.js.
TODO
- Keep track of which URLs get most traffic. This is potentially a nice way to start a registry.
- Use parallel to do MCP Client research every week automatically, such that this repo can be maintained with lower overhead.
