Skip to content

Working with AI Tools (MCP)

Ticos exposes a standard MCP server through @ticos/cli mcp, so AI coding tools can discover and call platform capabilities directly.

Minimum setup

Terminal window
npx -y @ticos/cli mcp

Claude Desktop

Add this to claude_desktop_config.json:

{
"mcpServers": {
"ticos": {
"command": "npx",
"args": ["-y", "@ticos/cli", "mcp"],
"env": {
"TICOS_API_URL": "http://localhost:2858"
}
}
}
}

Cursor

In Settings > Features > MCP, add a command server:

  • Name: Ticos
  • Command: npx -y @ticos/cli mcp

Usage guidance

  1. Verify the mcp command locally before wiring it into your IDE.
  2. Start with read-only operations, then allow write operations gradually.
  3. Use dedicated API keys per environment in production.