{"id":50116948,"url":"https://github.com/statespace-tech/statespace-mcp","last_synced_at":"2026-05-23T15:33:42.320Z","repository":{"id":348616087,"uuid":"1193437494","full_name":"statespace-tech/statespace-mcp","owner":"statespace-tech","description":"MCP server to connect to Statespace apps.","archived":false,"fork":false,"pushed_at":"2026-04-22T04:00:02.000Z","size":8796,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-22T05:44:01.877Z","etag":null,"topics":["api","mcp","model-context-protocol"],"latest_commit_sha":null,"homepage":"https://statespace.com/","language":"TypeScript","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/statespace-tech.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-03-27T08:15:06.000Z","updated_at":"2026-04-22T04:00:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/statespace-tech/statespace-mcp","commit_stats":null,"previous_names":["statespace-tech/statespace-mcp-server","statespace-tech/statespace-mcp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/statespace-tech/statespace-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statespace-tech%2Fstatespace-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statespace-tech%2Fstatespace-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statespace-tech%2Fstatespace-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statespace-tech%2Fstatespace-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/statespace-tech","download_url":"https://codeload.github.com/statespace-tech/statespace-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statespace-tech%2Fstatespace-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33402165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T04:15:53.637Z","status":"ssl_error","status_checked_at":"2026-05-23T04:15:53.242Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["api","mcp","model-context-protocol"],"created_at":"2026-05-23T15:33:41.506Z","updated_at":"2026-05-23T15:33:42.312Z","avatar_url":"https://github.com/statespace-tech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# statespace\n\n[![npm](https://img.shields.io/npm/v/statespace?style=flat-square)](https://www.npmjs.com/package/statespace)\n[![License](https://img.shields.io/badge/license-MIT-007ec6?style=flat-square)](https://github.com/statespace-tech/statespace-mcp-server/blob/main/LICENSE)\n[![Discord](https://img.shields.io/discord/1323415085011701870?label=Discord\u0026logo=discord\u0026logoColor=white\u0026color=5865F2\u0026style=flat-square)](https://discord.gg/rRyM7zkZTf)\n[![X](https://img.shields.io/badge/Statespace-black?style=flat-square\u0026logo=x\u0026logoColor=white)](https://x.com/statespace_tech)\n\nSearch documentation indexed from [llms.txt](https://llmstxt.org/) sites — from the terminal, from your AI assistant, or over HTTP.\n\n## CLI\n\n```bash\nnpx statespace search \"redis connection pooling\"\nnpx statespace search \"authentication\" --site upstash.com\nnpx statespace search \"rate limiting\" --limit 20\n```\n\n**Options**\n\n| Flag | Short | Default | Description |\n|------|-------|---------|-------------|\n| `--site \u003csite\u003e` | `-s` | — | Restrict to a specific site (name, domain, or URL) |\n| `--limit \u003cn\u003e` | `-l` | 10 | Max results |\n| `--url \u003curl\u003e` | `-u` | `http://localhost:3000` | Backend API base URL |\n\n## MCP\n\nAdd to your MCP client config (Claude Desktop, Cursor, etc.):\n\n```json\n{\n  \"mcpServers\": {\n    \"statespace\": {\n      \"command\": \"npx\",\n      \"args\": [\"statespace\", \"mcp\"]\n    }\n  }\n}\n```\n\nFor a remote backend:\n\n```json\n{\n  \"mcpServers\": {\n    \"statespace\": {\n      \"command\": \"npx\",\n      \"args\": [\"statespace\", \"mcp\", \"--url\", \"https://your-backend.example.com\"]\n    }\n  }\n}\n```\n\nTo run as an SSE server instead of stdio (useful for remote or multi-client deployments):\n\n```bash\nnpx statespace mcp --transport sse --port 4000\n```\n\n**Tool: `search`**\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `q` | string | yes | — | Search query |\n| `limit` | integer | no | 10 | Max results |\n| `site` | string | no | — | Restrict to a specific site (name, domain, or URL) |\n\n## HTTP\n\nThe backend exposes a single endpoint:\n\n```\nGET /search?q=\u003cquery\u003e[\u0026limit=\u003cn\u003e][\u0026site=\u003csite\u003e]\n```\n\n```bash\ncurl \"http://localhost:3000/search?q=redis+connection+pooling\"\ncurl \"http://localhost:3000/search?q=authentication\u0026site=upstash.com\u0026limit=5\"\n```\n\n**Response**\n\n```json\n[\n  {\n    \"url\": \"https://upstash.com/docs/llms.txt\",\n    \"site\": \"Upstash\",\n    \"title\": \"Upstash Docs\",\n    \"score\": 0.8321\n  }\n]\n```\n\nWithout `site`, returns one result per matching site. With `site`, returns individual pages within that site.\n\n## Requirements\n\nNode.js 18+\n\n## Community\n\n- **Discord**: [discord.gg/rRyM7zkZTf](https://discord.gg/rRyM7zkZTf)\n- **X**: [@statespace_tech](https://x.com/statespace_tech)\n- **Issues**: [GitHub Issues](https://github.com/statespace-tech/statespace-mcp-server/issues)\n\n## License\n\nThis project is licensed under the terms of the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatespace-tech%2Fstatespace-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstatespace-tech%2Fstatespace-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatespace-tech%2Fstatespace-mcp/lists"}