Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"statespace": {
"args": [
"statespace",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Statespace apps.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked statespace against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Statespace Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Search documentation indexed from llms.txt sites — from the terminal, from your AI assistant, or over HTTP.
npx statespace search "redis connection pooling"
npx statespace search "authentication" --site upstash.com
npx statespace search "rate limiting" --limit 20
Options
| Flag | Short | Default | Description |
|---|---|---|---|
--site <site> | -s | — | Restrict to a specific site (name, domain, or URL) |
--limit <n> | -l | 10 | Max results |
--url <url> | -u | http://localhost:3000 | Backend API base URL |
Add to your MCP client config (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"statespace": {
"command": "npx",
"args": ["statespace", "mcp"]
}
}
}
For a remote backend:
{
"mcpServers": {
"statespace": {
"command": "npx",
"args": ["statespace", "mcp", "--url", "https://your-backend.example.com"]
}
}
}
To run as an SSE server instead of stdio (useful for remote or multi-client deployments):
npx statespace mcp --transport sse --port 4000
Tool: search
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | yes | — | Search query |
limit | integer | no | 10 | Max results |
site | string | no | — | Restrict to a specific site (name, domain, or URL) |
The backend exposes a single endpoint:
GET /search?q=<query>[&limit=<n>][&site=<site>]
curl "http://localhost:3000/search?q=redis+connection+pooling"
curl "http://localhost:3000/search?q=authentication&site=upstash.com&limit=5"
Response
[
{
"url": "https://upstash.com/docs/llms.txt",
"site": "Upstash",
"title": "Upstash Docs",
"score": 0.8321
}
]
Without site, returns one result per matching site. With site, returns individual pages within that site.
Node.js 18+
This project is licensed under the terms of the MIT license.