MCP Server
Senda implements the Model Context Protocol (MCP) — an open standard that lets AI clients (Claude Desktop, Cursor, Windsurf, etc.) use Senda's agents as tools.
Endpoint
POST /mcp
Protocol: JSON-RPC 2.0 over HTTP (Streamable HTTP transport, MCP spec 2025-03-26)
Auth: Authorization: Bearer sk_live_YOUR_KEY
Connect from Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"senda": {
"url": "https://senda.telar.ai/api/mcp",
"headers": {
"Authorization": "Bearer sk_live_YOUR_KEY"
}
}
}
}
Restart Claude Desktop. You'll see Senda's 5 tools available in the tools panel.
Connect from Cursor
In Cursor settings → MCP Servers, add:
{
"name": "senda",
"url": "https://senda.telar.ai/api/mcp",
"headers": {
"Authorization": "Bearer sk_live_YOUR_KEY"
}
}
Server Info
GET /mcp
Returns discovery info:
{
"name": "senda-mcp-server",
"version": "1.0.0",
"protocol_version": "2025-03-26",
"description": "Senda AI Agent Platform — MCP Server",
"tools": 5,
"resources": 3
}