Agent Integrations

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.

See available toolsRead agent instructions

Endpoint URL

https://enso.bot/mcp

Supported 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_info

Get enso company info

Fetch a structured overview of enso: what the company does, its five agent surfaces, pricing tiers, founding team, and key URLs.

No parameters
list_experiments

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

No parameters
get_experiment

Get 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

slug : string// e.g. "wikipedia-castle-experiment"
list_blog_posts

List blog posts

List enso's published blog posts (field notes on platform-attention experiments). Returns slug, title and canonical URL for each post.

No parameters
list_careers

List open roles

List enso's currently open roles. Returns slug, title, tagline, location, employment type and canonical URL for each role.

No parameters
get_career

Get open role

Fetch the full description for a single enso open role by slug, including summary, responsibilities, signals and bonus criteria.

Parameters

slug : string// e.g. "head-of-growth"

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" }
  }
}
Inspect the endpoint