ワンクリックで
statespace
Search developer docs, APIs, and technical pages from across the web.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search developer docs, APIs, and technical pages from across the web.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | statespace |
| description | Search developer docs, APIs, and technical pages from across the web. |
Statespace searches Markdown and .txt pages from llms.txt sites.
Agent guidance:
site: query) when the target site is known--human — always parse JSON outputPlain queries search across all sites:
mcp server setup
vector database embeddings
rate limiting middleware
oauth2 token refresh
websocket reconnection strategy
Scope a query to a specific site with site: query:
stripe: webhook verification
supabase: edge functions auth
vercel: edge middleware caching
mistral.ai: function calling # match by domain
docs.aws.amazon.com: s3 presigned urls # match by subdomain
Use quotes for exact phrase matching:
"context window limit"
vector database "semantic search"
stripe: "webhook signature verification"
Search llms.txt pages from the command line: npx @statespace-tech/statespace search <query> [options]
npx @statespace-tech/statespace search "mcp server setup"
npx @statespace-tech/statespace search "stripe: webhook verification" --limit 5
npx @statespace-tech/statespace search "redis connection pooling" --limit 10 --offset 3
npx @statespace-tech/statespace search "anthropic: tool function calling" --limit 5 --human
| Flag | Short | Default | Max | Description |
|---|---|---|---|---|
--limit <n> | -l | 10 | 50 | Max results to return |
--offset <n> | -o | 0 | — | Results to skip (for pagination) |
--human | — | — | — | Human-readable output instead of JSON |
Import and call search() directly from TypeScript or JavaScript.
import { search } from '@statespace-tech/statespace';
const results = await search("mcp server setup");
const results = await search("stripe: webhook verification", { limit: 5 });
const results = await search("redis connection pooling", { limit: 10, offset: 3 });
| Option | Type | Default | Max | Description |
|---|---|---|---|---|
limit | number | 10 | 50 | Max results to return |
offset | number | 0 | — | Results to skip (for pagination) |
Add to your MCP config to expose a search tool to your agents:
{
"mcpServers": {
"statespace": {
"command": "npx",
"args": ["@statespace-tech/statespace", "mcp"]
}
}
}
| Parameter | Required | Default | Max | Description |
|---|---|---|---|---|
q | yes | — | — | Search query |
limit | no | 10 | 50 | Max results to return |
offset | no | 0 | — | Results to skip (for pagination) |
GET https://search.statespace.com/search — returns a JSON object with results and total.
curl "https://search.statespace.com/search?q=mcp+server+setup"
curl "https://search.statespace.com/search?q=stripe%3A+webhook+verification&limit=5"
curl "https://search.statespace.com/search?q=redis+connection+pooling&limit=10&offset=3"
| Parameter | Required | Default | Max | Description |
|---|---|---|---|---|
q | yes | — | — | Search query |
limit | no | 10 | 50 | Max results to return |
offset | no | 0 | — | Results to skip (for pagination) |
Results are returned as a JSON array:
[
{
"url": "https://upstash.com/docs/redis/quickstart",
"site": "Upstash",
"title": "Redis Quickstart",
"snippet": "Connect to your Upstash Redis database using the REST API or a compatible client."
}
]
Use site, title, and snippet to decide relevance. Use url to fetch the full page.