Skip to content

Try MidOS

Test MidOS tools instantly using the live cloud endpoint. No install, no API key, no signup.

MidOS is hosted on Smithery and available at:

https://midos-mcp--midosresearch.run.tools

You can call any free-tier tool via JSON-RPC. Every example below is a real request you can copy and run.


Find knowledge chunks across 20+ technology stacks:

Terminal window
curl -s https://midos-mcp--midosresearch.run.tools \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_knowledge",
"arguments": {
"query": "React Server Components patterns",
"max_results": 3
}
},
"id": 1
}'

What you get: Matching knowledge chunks with title, relevance score, stack, and content preview (truncated to 250 chars on free tier).


Browse available skills for any technology:

Terminal window
curl -s https://midos-mcp--midosresearch.run.tools \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "list_skills",
"arguments": {
"stack": "python"
}
},
"id": 2
}'

What you get: All Python-related skills with names, descriptions, and section counts. Try other stacks: typescript, go, rust, kubernetes, security.


Tell MidOS about your agent to get personalized recommendations:

Terminal window
curl -s https://midos-mcp--midosresearch.run.tools \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "agent_handshake",
"arguments": {
"model": "claude-sonnet-4-5-20250514",
"context_window": 200000,
"client": "cursor",
"languages": "python,typescript",
"frameworks": "fastapi,nextjs",
"project_goal": "Building a REST API with auth"
}
},
"id": 3
}'

What you get: Personalized tool catalog ranked by relevance, context window tips, and suggested skill packs for your exact stack.


Check the knowledge base health and metrics:

Terminal window
curl -s https://midos-mcp--midosresearch.run.tools \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "hive_status",
"arguments": {}
},
"id": 4
}'

What you get: Live counts of chunks, skills, EUREKA entries, vector store status, and pipeline health.


Once you’ve seen the responses, connect MidOS to your AI agent for the full experience:

  1. Install locally

    Terminal window
    pip install midos-mcp
  2. Add to your MCP client (Claude Desktop, Cursor, VS Code, etc.)

    {
    "mcpServers": {
    "midos": {
    "command": "midos-mcp",
    "args": ["serve"]
    }
    }
    }
  3. Start asking your agent

    “Use search_knowledge to find patterns for JWT authentication”

    Your agent will call MidOS tools automatically and get structured knowledge back.

See the full Quick Start for client-specific setup instructions.

These 9 tools are available without an API key:

ToolWhat it does
search_knowledgeKeyword search across 21,000+ knowledge chunks
list_skillsBrowse 118 skills by technology stack
hive_statusKnowledge base health and metrics
project_statusSystem overview and pipeline status
agent_handshakePersonalized onboarding and tool recommendations
where_was_iResume a previous session
context_healthMonitor context window utilization
get_progressRetrieve saved session progress
agent_bootstrapQuick-start configuration for new agents

Want more? The Dev tier ($24/mo) unlocks all 34+ tools, full untruncated knowledge, EUREKA discoveries, semantic search, and 500 queries/day.