Skip to content

Quickstart

Fetch your own profile (MCP)

bash
curl -X POST https://api.eu.liza.app/api/mcp \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"get_me","arguments":{}}}'

Responses are located in result.content[0].text (JSON). Clients that support typed output will also find the same object in result.structuredContent.

Fetch available tools live

bash
# Names/descriptions only (no auth):
curl https://api.eu.liza.app/api/mcp/tools

# Complete (with schemas + annotations), via JSON-RPC:
curl -X POST https://api.eu.liza.app/api/mcp \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Continue with Connect Claude Code.

Liza Documentation