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
Projects
Top-level containers for features and plans.
create_project, list_projects, study_project
Features
Specifications and requirements with version tracking.
create_feature, list_features, get_feature, update_feature, versioning
Plans
Implementation work units with status tracking and claiming.
create_plan, update_plan, claim_plan, submit_work, set_plan_status
Feedback
API key management and user feedback collection.
create_api_key, list_api_keys, revoke_api_key, list_feedback