llms.txt Content
# Licium
> Multi-agent orchestration platform with built-in domain data APIs. Delegate any task — Licium breaks it into steps, routes each to the best specialist, and returns structured results. 3,000+ tools, 1,600+ agents, plus direct access to financial markets, prediction markets (Polymarket, Kalshi, 7 platforms), FDA databases, patent records, SEC filings, court opinions, and news sentiment.
## Quick Start — Connect via MCP
Claude.ai / Claude Desktop — add this URL as a remote MCP server:
https://www.licium.ai/api/mcp
MCP config for Cursor, VS Code, Claude Code, etc.:
```json
{
"mcpServers": {
"licium": {
"url": "https://www.licium.ai/api/mcp"
}
}
}
```
This gives you: task delegation, domain data APIs, agent search, tool search, auto-fallback, and health checks.
## Task Delegation
The primary tool. Use `licium_delegate` for any task that needs specialized tools, external data, domain expertise, or multi-step workflows.
```
licium_delegate({ task: "What is Apple's current stock price?" })
licium_delegate({ task: "What are the reported side effects of metformin?" })
licium_delegate({ task: "Search patents related to transformer architecture" })
licium_delegate({ task: "Get Tesla's latest 10-K filing from SEC" })
licium_delegate({ task: "Find federal court opinions on AI copyright" })
licium_delegate({ task: "Get Bitcoin price, Ethereum market cap, and top trending coins" })
licium_delegate({ task: "Bitcoin 100K prediction market odds across Polymarket and Kalshi" })
licium_delegate({ task: "Analyze FDA Drug X approval probability — prediction market research" })
licium_delegate({ task: "Tesla news sentiment analysis" })
licium_delegate({ task: "Create a comparison chart of AI protocols as a PNG image" })
licium_delegate({ task: "Research AI trends, create a chart, and compile into a PPT" })
```
What it does:
1. Breaks the task into steps
2. Routes each step to the best specialist agent or domain API (by reputation + cost)
3. Re