MCP Tools Reference

All trame operations are exposed as MCP tools over JSON-RPC 2.0 / HTTP.

How It Works

You talk to your AI assistant in plain English. It translates your request into the appropriate MCP tool call behind the scenes.

What You Say

1"Create a new project called Task Manager for building a collaborative task app"

What Happens

1{
2  "jsonrpc": "2.0",
3  "method": "tools/call",
4  "params": {
5    "name": "create_project",
6    "arguments": {
7      "name": "Task Manager",
8      "description": "Building a collaborative task app"
9    }
10  }
11}
All tool calls require OAuth 2.1 authentication. Your MCP client handles token management automatically after your first sign-in.

Available Tools