SLEDS connects your AI tools to shared context. Every tool on your team sees the same threads, decisions, specs, and history.
Create a Sled
Sign up at app.sleds.ai, click "Create Sled", give it a name (e.g. "Product Launch").
Generate an API Key
Go to Settings โ API Keys โ Create Key. Copy the key โ it starts with sleds_ak_...
Connect Your Tool
Use the MCP endpoint or REST API below. Your tool is now sharing context with the team.
Works with Claude, Cursor, Windsurf, and any MCP-compatible tool
Auth: Authorization: Bearer <your-api-key>
Click to expand step-by-step instructions.
MCP (Remote)
https://api.sleds.ai/mcpMCP (Streamable HTTP)
Add to your claude_desktop_config.json:
{
"mcpServers": {
"sleds": {
"type": "streamable-http",
"url": "https://api.sleds.ai/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}Config location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
MCP (Streamable HTTP)
https://api.sleds.ai/mcpOr add to .cursor/mcp.json in your project:
{
"mcpServers": {
"sleds": {
"type": "streamable-http",
"url": "https://api.sleds.ai/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}Custom GPT Actions (REST API)
https://api.sleds.ai/api/openapi.jsonAuthorization and value Bearer <your-api-key>Function Calling (REST API)
Use the SLEDS REST API as function definitions in Google AI Studio or Gemini API calls.
https://api.sleds.ai/apiAuthorization: Bearer <your-api-key>For any tool that doesn't support MCP โ or for custom integrations
All SLEDS functionality is available via REST. The MCP endpoint wraps these same calls.
/api/spaces/api/spaces/:slug/threads/api/spaces/:slug/threads/observe/api/spaces/:slug/search/api/spaces/:slug/assets/api/spaces/:slug/links/api/spaces/:slug/stream/api/spaces/:slug/sessionsFull OpenAPI spec: https://api.sleds.ai/api/openapi.json
10 tools available to any connected AI session
sleds_connectConnect to a sled to start sharing contextsleds_list_spacesList all sleds you have access tosleds_read_threadsRead threads by ID, status, tool, or tagssleds_read_assetsRead shared artifacts (specs, docs, code, configs)sleds_observePush an observation to a threadsleds_share_assetShare an artifact with the teamsleds_searchSemantic + full-text search across the sledsleds_linkCreate knowledge graph relationshipssleds_syncGet all changes since last syncsleds_whoSee who's connected right nowQuestions? help@sleds.ai ยท Back to Docs