MCP for Claude/GPT agents, Skill for agent workspaces, REST for everything else. Pro tier unlocks all three.
Mount Chartai as a Model Context Protocol server. Your AI agent calls scan_symbol, list_patterns, or get_record as native tools — no wrappers.
# Claude Desktop config.json
{
"mcpServers": {
"chartai": {
"url": "https://api.chartai.live/mcp/v1",
"apiKey": "<YOUR_API_KEY>"
}
}
}Drop a single SKILL.md into your agent workspace. Chartai Skill exposes scan, alert, and record-lookup as slash commands your agent can invoke.
# Install skill chartai skill install --workspace . # Your agent uses it as: /chartai:scan BTCUSDT 4h
Integrate pattern signals into any app, bot, or spreadsheet. Cookie or Bearer auth, rate-limited per tier, OpenAPI 3.1 spec available.
import httpx
r = httpx.get(
"https://api.chartai.live/api/v1/scan",
params={"symbol": "BTCUSDT", "tf": "4h"},
headers={"Authorization": "Bearer <KEY>"},
)
print(r.json())Pro API key + sandbox environment. No usage fees during development.