1. Conduid
  2. Data
  3. Statespace
MCP server · Data

Statespace

Interactive web apps for AI agents

87Excellent

Scored 4 days ago · breakdown

About Statespace

Statespace is an MCP server published by statespace-tech in the Data category: interactive web apps for AI agents. It has been installed 0 times through Conduid.

The repository has 818 stars and 64 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx statespace

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Statespace

Powered by Claude · Grounded in docs

I know everything about Statespace. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.9v0.1.9 · 3 Apr 2026Download statespace 0.1.9 | File | Platform | Checksum | |--------|----------|----------| | [statespace-aarch64-apple-darwin.tar.xz](https://github.com/statespace-tech/statespace/releases/download/v0.1.9/statespace-aarch64-apple-darwin.ta…
v0.1.7v0.1.7 · 15 Mar 2026Download statespace 0.1.7 | File | Platform | Checksum | |--------|----------|----------| | [statespace-aarch64-apple-darwin.tar.xz](https://github.com/statespace-tech/statespace/releases/download/v0.1.7/statespace-aarch64-apple-darwin.ta…
v0.1.6v0.1.6 · 13 Mar 2026Download statespace 0.1.6 | File | Platform | Checksum | |--------|----------|----------| | [statespace-aarch64-apple-darwin.tar.xz](https://github.com/statespace-tech/statespace/releases/download/v0.1.6/statespace-aarch64-apple-darwin.ta…
v0.1.5v0.1.5 · 2 Mar 2026Download statespace 0.1.5 | File | Platform | Checksum | |--------|----------|----------| | [statespace-aarch64-apple-darwin.tar.xz](https://github.com/statespace-tech/statespace/releases/download/v0.1.5/statespace-aarch64-apple-darwin.ta…
v0.1.3v0.1.3 · 18 Feb 2026Full Changelog**: https://github.com/statespace-tech/statespace/compare/v0.1.2...v0.1.3

README

CI npm License Discord X


Website: https://statespace.com


Search Markdown and .txt pages from llms.txt sites. Available as a CLI, SDK, MCP server, and agent skill.

Installation

npm install @statespace-tech/statespace

Query syntax

Plain 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"

CLI

Search documentation 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

SDK

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 });

MCP

Add to your MCP config to expose a search tool to your agents:

{
  "mcpServers": {
    "statespace": {
      "command": "npx",
      "args": ["@statespace-tech/statespace", "mcp"]
    }
  }
}

Agent skill

See SKILL.md

Requirements

Node.js 18+

Community & Contributing

License

MIT

README mirrored from the source repository 4 days ago. The original is authoritative.

Questions

About Statespace

How do I install Statespace?

Run npx statespace, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Statespace safe to use with an AI agent?

Its trust score is 87 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Statespace still maintained?

Yes — the latest release is v0.1.9 (3 Apr 2026), and the last commit was 6 months ago. The repository has 818 stars and 0 open issues.