ToolFront MCP Server
Offers community support through a Discord server for real-time help and discussions
Offers containerized deployment of the ToolFront MCP server through Docker images
Provides connection to DuckDB databases, allowing AI agents to execute queries and explore DuckDB data
Provides issue tracking and repository hosting for the ToolFront project
Enables GitHub Copilot to connect to your databases, providing context about tables, schemas, and query patterns
Enables connections to MySQL databases, allowing AI agents to query and analyze MySQL data
Provides connection to PostgreSQL databases, allowing AI agents to query and work with PostgreSQL data
Enables connections to Snowflake data warehouses, allowing AI agents to query and analyze Snowflake data
Provides connection to SQLite databases, allowing AI agents to query and analyze SQLite data
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ToolFront MCP Serverconnect to our PostgreSQL analytics database and show me the top 5 customers by revenue this month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Shareable data apps for AI agents
Website: https://statespace.com
Documentation: https://docs.statespace.com
AI doesn't know your data, but it knows Unix and filesystems. Statespace lets you transform your files and CLI tools into shareable data apps that any agent can discover and use. Build database explorers, share business rules, or document legacy APIs. Once you’ve created an app, deploy and monitor it with our cloud platform.
Installation
$ curl -fsSL https://statespace.com/install.sh | bashRelated MCP server: RunContext
Quickstart
1. Create it
Run statespace init in the current directory:
$ statespace init2. Build it
Add constrained CLI tools to README.md or any other Markdown file:
---
tools:
- [grep]
- [python, scripts/summarize.py]
- [sqlite3, data/app.db, { regex: "^(SELECT|EXPLAIN)\\b.*" }]
---
# Instructions
- Only run read-only queries against the database
- Use `summarize.py` for aggregations and report generation
- Use `grep` to search across local files and logsAlternatively, let your coding agent build it out for you:
$ claude "Document my database schema and add tools to query it"3. Run it
Run your app locally:
$ statespace run --port 8000Agents and HTTP clients can now read pages and execute tools:
# Read a page
$ curl http://localhost:8000/README.md
# Execute a CLI tool
$ curl -X POST http://localhost:8000/README.md \
-H "Content-Type: application/json" \
-d '{"command": ["grep", "-r", "revenue", "."]}'4. Deploy it
Deploy your app to the cloud:
$ statespace deploy --name demoYour app is now live at a public URL:
$ curl https://demo.statespace.app/README.md5. Share it
Point any agent at the URL directly:
$ claude "Use the API at https://demo.statespace.app to break down revenue by region"Or wire it up as an MCP server:
"mcpServers": {
"statespace": {
"command": "npx",
"args": ["-y", "statespace-mcp", "https://demo.statespace.app"]
}
}Features
🔌 Any CLI tool —
psql,sqlite3,grep,python— if it runs in a shell, it works🔒 Safe by default — regex constraints mean agents can only run what you explicitly allow
🧠Self-describing — Markdown pages are both the documentation and the interface
📖 Composable — split across pages so agents load only what they need and save tokens
🚀 Shareable — deploy to a URL, wire up as an MCP server, or share with teammates
Community & Contributing
Discord: Join our community server for real-time help and discussions
X: Follow us @statespace_tech for updates and news
Issues: Report bugs or request features on GitHub Issues
License
This project is licensed under the terms of the MIT license.
This server cannot be installed
Maintenance
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
- Alicense-qualityAmaintenanceAgent-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.148MIT
- Alicense-qualityCmaintenanceEnables AI agents to understand and query your database safely by providing a semantic layer of metadata, with tools to search, explain, validate, and generate safe SQL.2MIT
- Alicense-qualityCmaintenanceEnables AI agents to securely interact with multiple databases (MySQL, PostgreSQL) via natural language queries, with cross-database querying and enterprise-grade security.20MIT
- Alicense-qualityCmaintenanceConnects databases to AI assistants, enabling natural language data analysis, cross-database queries, automated insights, and visualizations.MIT
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.
Shared, permission-aware company context for AI agents, with provenance, approvals and audit.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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