fleek-mcp-remote
v1.0.0
Published
Remote MCP client for Fleek API Explorer - connects Claude to remote MCP servers
Downloads
9
Readme
Fleek MCP Remote Client
A minimal client that connects Claude Desktop to remote MCP servers. No local API configuration needed!
Installation
You don't need to install anything! Just use npx:
npx fleek-mcp-remote --url https://your-mcp-server.com/api/mcpUsage with Claude Desktop
Add this to your Claude Desktop configuration file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"fleek-api": {
"command": "npx",
"args": [
"fleek-mcp-remote",
"--url",
"https://fleek-api-explorer.vercel.app/api/mcp"
]
}
}
}Benefits
- ✅ No local installation required
- ✅ Always runs the latest version
- ✅ Connects to any remote MCP server
- ✅ Auto-updates from your remote server
How it Works
- Claude Desktop runs
npx fleek-mcp-remote - NPX downloads and runs the latest version
- The client connects to your remote MCP server
- All tool definitions come from the remote server
- Updates happen automatically on the server side
Custom MCP Servers
To use with your own MCP server:
{
"mcpServers": {
"my-server": {
"command": "npx",
"args": [
"fleek-mcp-remote",
"--url",
"https://my-company.com/api/mcp"
]
}
}
}