Setup Guide for MCP Clients
MCP Pure servers can be used with any MCP-compatible client. Here is how to configure the most popular ones.
🚀 Deployed Instance
Base URL: https://mcppure.shraj.workers.dev
Routes:
- Bluesky:
https://mcppure.shraj.workers.dev/mcp/bluesky - Reddit:
https://mcppure.shraj.workers.dev/mcp/reddit - GitHub:
https://mcppure.shraj.workers.dev/mcp/github
1. Cursor
To add an MCP server to Cursor:
- Open Settings > Cursor Settings.
- Go to General > MCP.
- Click + Add New MCP Server.
- Set Name (e.g.,
Bluesky). - Set Type to
SSE. - Set URL to
https://mcppure.shraj.workers.dev/mcp/bluesky. - Add Headers if needed (e.g.,
x-bluesky-identifier,x-bluesky-app-password).
2. Claude Desktop
Add the following to your claude_desktop_config.json:
json{ "mcpServers": { "mcppure-bluesky": { "url": "https://mcppure.shraj.workers.dev/mcp/bluesky", "headers": { "x-bluesky-identifier": "your-handle.bsky.social", "x-bluesky-app-password": "your-app-password" } } } }
3. LobeHub
- Go to Settings > Plugins.
- Click Add Custom Plugin.
- Select MCP Server.
- Enter the SSE URL:
https://mcppure.shraj.workers.dev/mcp/bluesky.
4. Cline (VS Code Extension)
- Open Cline settings.
- Under MCP Servers, add a new entry.
- Choose SSE as the transport.
- Provide the URL.
🛠Deploy Your Own Instance
If you want to host your own instance of MCP Pure:
- Clone the repo:
git clone https://github.com/shade-solutions/mcp-pure - Install dependencies:
bun install - Configure your secrets in Cloudflare:
bash
wrangler secret put BLUESKY_IDENTIFIER wrangler secret put BLUESKY_APP_PASSWORD # etc... - Deploy:
bun run deploy:hub