monday.com
A work operating system for boards, items, and workflows across teams and projects.
https://api.monday.com
https://mcp.monday.com/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 monday.com account the connection is authenticated as.
tickets
Retrieve a list of items from monday.com.
ticket
Retrieve a single item from monday.com by ID.
projects
Retrieve a list of boards from monday.com.
Unified API Endpoints
/me
Retrieve the monday.com account this connection is authenticated as.
/ticketing/tickets
Retrieve a list of items from monday.com. monday only reads items one board at a time; this defaults to the first board on the account, and a `board` passthrough parameter selects another one by id (or `page` by position).
/ticketing/tickets/{id}
Retrieve a single item from monday.com by ID.
/ticketing/projects
Retrieve a list of boards from monday.com. monday pages boards by number rather than by cursor, so walk them with the `page` passthrough parameter.
