Skip to main content
Glama
statespace-tech

ToolFront MCP Server

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

Related MCP server: SLayer

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

A
license - permissive license
-
quality - not tested
F
maintenance

Maintenance

Maintainers
Response time
1wRelease cycle
6Releases (12mo)
Commit activity
Issues opened vs closed

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    Enables AI to query and manage PostgreSQL and MongoDB databases through natural language. Supports automatic schema discovery, safe data operations, and network-wide database access with zero-configuration deployment.
    Last updated
  • A
    license
    -
    quality
    A
    maintenance
    Agent-native semantic layer, letting AI agents query databases through specifying intent instead of writing SQL, then compiling structured queries into correct, dialect-aware SQL. Dynamic and expressive, supporting multi-stage queries, time-shifts, and complex join schemas.
    Last updated
    142
    MIT

View all related MCP servers

Related MCP Connectors

  • Your company's brain for AI agents. Cited, permission-aware knowledge across every system.

  • The grounded data layer for any LLM: governed SQL, metrics, lineage and catalog over your data.

  • Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/statespace-tech/statespace'

If you have feedback or need assistance with the MCP directory API, please join our Discord server