|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.monday-mcp-npx", |
| 4 | + "name": "monday.com (npx)", |
| 5 | + "alias": "monday", |
| 6 | + "description": "Interact with the monday.com Work OS via its API: query and manage boards, items, columns, updates, users, and workspaces. Runs locally through npx with read-only and dynamic API tool modes available.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/61420283?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "productivity" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "monday", |
| 14 | + "monday.com", |
| 15 | + "project-management", |
| 16 | + "work-os", |
| 17 | + "boards", |
| 18 | + "productivity" |
| 19 | + ], |
| 20 | + "transport": { |
| 21 | + "type": "stdio", |
| 22 | + "command": "npx", |
| 23 | + "args": [ |
| 24 | + "-y", |
| 25 | + "@mondaydotcomorg/monday-api-mcp@latest", |
| 26 | + "-t", |
| 27 | + "${input:MONDAY_TOKEN}" |
| 28 | + ], |
| 29 | + "metadata": { |
| 30 | + "inputs": [ |
| 31 | + { |
| 32 | + "id": "MONDAY_TOKEN", |
| 33 | + "label": "monday.com API Token", |
| 34 | + "description": "Personal API token for your monday.com account. Found under your avatar > Developers > My Access Tokens, or in the Developer Center. Grants access scoped to your user's permissions.", |
| 35 | + "type": "text", |
| 36 | + "required": true, |
| 37 | + "secret": true, |
| 38 | + "placeholder": "eyJhbGciOi****************************", |
| 39 | + "obtain": { |
| 40 | + "url": "https://developer.monday.com/api-reference/docs/authentication", |
| 41 | + "instructions": "1. Log in to your monday.com account\n2. Click your avatar (bottom-left) > Developers\n3. Open 'My Access Tokens' (or Admin > API for the account token)\n4. Copy your personal API token", |
| 42 | + "button_label": "Get API Token" |
| 43 | + } |
| 44 | + } |
| 45 | + ] |
| 46 | + } |
| 47 | + }, |
| 48 | + "auth": { |
| 49 | + "type": "api_key", |
| 50 | + "instructions": "Generate a personal API token in monday.com under your avatar > Developers > My Access Tokens (see https://developer.monday.com/api-reference/docs/authentication)." |
| 51 | + }, |
| 52 | + "contributor": { |
| 53 | + "name": "monday.com", |
| 54 | + "github": "mondaycom", |
| 55 | + "url": "https://monday.com" |
| 56 | + }, |
| 57 | + "links": { |
| 58 | + "repository": "https://github.com/mondaycom/mcp", |
| 59 | + "homepage": "https://monday.com", |
| 60 | + "documentation": "https://developer.monday.com/api-reference/docs" |
| 61 | + }, |
| 62 | + "platforms": [ |
| 63 | + "all" |
| 64 | + ], |
| 65 | + "capabilities": { |
| 66 | + "tools": true, |
| 67 | + "resources": false, |
| 68 | + "prompts": false, |
| 69 | + "read_only_mode": true |
| 70 | + }, |
| 71 | + "changelog_url": "https://github.com/mondaycom/mcp/releases" |
| 72 | +} |
0 commit comments