CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
kruskal-labs avatar

ToolFront

kruskal-labs/toolfront
876
Summary

Toolfront provides an MCP server that exposes Statespace data apps—shareable applications built from files and CLI tools—to AI agents for discovery and execution. The server enables agents to read Markdown documentation pages and execute constrained CLI commands (like grep, Python scripts, and SQLite queries) defined within those pages, solving the problem of making local data and tools accessible to AI systems in a controlled, discoverable manner. It bridges the gap between an agent's capability to understand Unix filesystems and the need to safely expose specific data operations and business logic through a standardized interface.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →

Statespace

Shareable data apps for AI agents

Test Suite License crates.io Discord X


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 | bash

Quickstart

1. Create it

Run statespace init in the current directory:

$ statespace init

2. 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 logs

Alternatively, 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 8000

Agents 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 demo

Your app is now live at a public URL:

$ curl https://demo.statespace.app/README.md

5. 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.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Categories
AI & LLM ToolsData & Analytics
UpdatedDec 15, 2025
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
mrkrsl avatar
Web Search

mrkrsl/web-search-mcp

Provides multi-engine web search with full-page extraction for local LLM workflows and quick summaries.
862
alpacahq avatar
Alpaca

alpacahq/alpaca-mcp-server

Alpaca’s official MCP Server lets you trade stocks, ETFs, crypto, and options, run data analysis, and build strategies in plain English directly from your favorite LLM tools and IDEs
736
coleam00 avatar
MCP Mem0

coleam00/mcp-mem0

Provides persistent AI memory with save, recall, and semantic search across sessions
677
rusiaaman avatar
WCWG

rusiaaman/wcgw

Shell and coding agent on mcp clients
660
mem0ai avatar
Mem0

mem0ai/mem0-mcp

Provides memory management via MCP for adding, searching, updating, and deleting long-term memories across users, agents, and runs.
651
openosint avatar
OpenOSINT

io.github.sonotommy/openosint

AI-powered OSINT agent & MCP server. 16 tools: email, breach, IP, WHOIS, DNS, Shodan, GitHub & more.
605