{"id":50784669,"url":"https://github.com/agrublev/fc-remote-mcp","last_synced_at":"2026-06-12T06:32:42.982Z","repository":{"id":356433074,"uuid":"1232509099","full_name":"agrublev/fc-remote-mcp","owner":"agrublev","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-08T02:20:28.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-08T04:27:10.574Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agrublev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-08T02:12:50.000Z","updated_at":"2026-05-08T02:20:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/agrublev/fc-remote-mcp","commit_stats":null,"previous_names":["agrublev/fc-remote-mcp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/agrublev/fc-remote-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agrublev%2Ffc-remote-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agrublev%2Ffc-remote-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agrublev%2Ffc-remote-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agrublev%2Ffc-remote-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agrublev","download_url":"https://codeload.github.com/agrublev/fc-remote-mcp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agrublev%2Ffc-remote-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34232790,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-12T06:32:42.201Z","updated_at":"2026-06-12T06:32:42.964Z","avatar_url":"https://github.com/agrublev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fc-remote-mcp\n\nConnect stdio-only MCP clients (Claude Desktop, Cursor, etc.) to remote MCP servers over HTTP/SSE — with optional OAuth or static auth headers. A lightweight clone of [`mcp-remote`](https://github.com/geelen/mcp-remote) tuned for Freedcamp's MCP server.\n\n## Install\n\nRun on demand with `npx` (no install required):\n\n```bash\nnpx fc-remote-mcp \u003cserver-url\u003e [options]\n```\n\nOr install globally:\n\n```bash\nnpm install -g fc-remote-mcp\n```\n\n## Usage\n\n```bash\nfc-remote \u003cserver-url\u003e [options]\n```\n\n### Options\n\n- `--transport \u003cmode\u003e` — `http-only`, `sse-only`, or `auto` (default: `auto`)\n- `--header \"Name: value\"` — add a custom header (repeatable). Use this to pass static API keys / secrets.\n- `--allow-http` — permit non-HTTPS server URLs (for local dev)\n- `--debug` — verbose logging to stderr\n- `--help`, `--version`\n\n### Example — Freedcamp with static API headers\n\n```bash\nnpx fc-remote-mcp https://mcp.freedcamp.top/mcp \\\n  --transport http-only \\\n  --header \"X-Freedcamp-Api-Key: \u003cyour-key\u003e\" \\\n  --header \"X-Freedcamp-Api-Secret: \u003cyour-secret\u003e\"\n```\n\n### Example — OAuth-protected server\n\n```bash\nnpx fc-remote-mcp https://example.com/mcp\n```\n\nA browser window will open for the OAuth login flow; tokens are cached under `~/.mcp-auth/`.\n\n## Wire it into an MCP client\n\nMost stdio MCP clients accept a JSON config like:\n\n```json\n{\n  \"mcpServers\": {\n    \"freedcamp\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"fc-remote-mcp\",\n        \"https://mcp.freedcamp.top/mcp\",\n        \"--transport\", \"http-only\",\n        \"--header\", \"X-Freedcamp-Api-Key: \u003ckey\u003e\",\n        \"--header\", \"X-Freedcamp-Api-Secret: \u003csecret\u003e\"\n      ]\n    }\n  }\n}\n```\n\nThe proxy speaks stdio to the client and forwards every JSON-RPC message to the remote server.\n\n## Diagnostic client\n\nA standalone client is bundled to verify a remote server end-to-end without an MCP host:\n\n```bash\nnpx -p fc-remote-mcp fc-remote-client \u003cserver-url\u003e [options]\n```\n\nIt connects, lists tools/resources/prompts, and exits.\n\n## Requirements\n\n- Node.js \u003e= 18\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagrublev%2Ffc-remote-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagrublev%2Ffc-remote-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagrublev%2Ffc-remote-mcp/lists"}