Asana
A work management platform that helps teams organize, track, and manage their work.
https://app.asana.com/api
https://mcp.asana.com/v2/mcp
Agent
const bundleup = new BundleUp('Zw7Lt7...');
const mcp = bundleup.mcp('conn_abc123').connect();
const tools = await mcp.listTools(); Proxy
const bundleup = new BundleUp('Zw7Lt7...');
const proxy = bundleup.proxy('conn_abc123');
const response = await proxy.get('/[...]');Unified MCP Tools
me
Get the Asana account the connection is authenticated as.
tickets
Retrieve a list of tasks from Asana.
ticket
Retrieve a single task from Asana by ID.
projects
Retrieve a list of projects from Asana.
Unified API Endpoints
/me
Retrieve the Asana account this connection is authenticated as.
/ticketing/tickets
Retrieve a list of tasks from Asana.
/ticketing/tickets/{id}
Retrieve a single task from Asana by ID.
/ticketing/projects
Retrieve a list of projects from Asana.
