Connect an AI assistant to enso
enso exposes a public Model Context Protocol (MCP) server at /mcp. Let Claude, ChatGPT, Cursor or any MCP client read our experiments, posts, roles and company overview directly.
Endpoint URL
https://enso.bot/mcpSupported clients
The endpoint is a Streamable HTTP MCP server. Use it with Claude Desktop, ChatGPT, Cursor, Windsurf, or any client that supports MCP. No authentication is required - all data is public.
Available Tools
What your assistant can read
get_company_infoGet enso company info
Fetch a structured overview of enso: what the company does, its five agent surfaces, pricing tiers, founding team, and key URLs.
list_experimentsList Agentic Lab experiments
List enso's Agentic Lab experiments (platform-attention loophole field notes). Returns slug, title, tag, status, excerpt, author, date and canonical URL for each experiment.
get_experimentGet Agentic Lab experiment
Fetch a single enso Agentic Lab experiment by slug. Returns the full write-up: body, stats, and the technical paper when available.
Parameters
list_blog_postsList blog posts
List enso's published blog posts (field notes on platform-attention experiments). Returns slug, title and canonical URL for each post.
list_careersList open roles
List enso's currently open roles. Returns slug, title, tagline, location, employment type and canonical URL for each role.
get_careerGet open role
Fetch the full description for a single enso open role by slug, including summary, responsibilities, signals and bonus criteria.
Parameters
Quick Start
Example: fetch the latest experiment
Your assistant sends a JSON-RPC request to the endpoint. Here is a sample call for the get_experiment tool:
POST https://enso.bot/mcp
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_experiment",
"arguments": { "slug": "wikipedia-castle-experiment" }
}
}



