11. Monday.com MCP Server
Monday.com works as a whiteboard where teams organize their work, their tasks, projects, deadlines, and ownership.
This MCP acts like an assistant that connects directly to the user’s Monday workspace and allows him to interact with it using simple everyday language. Meaning the user can simply just talk or type through the chat its requests instead of going through the app manually.
This MCP is useful for:
Creating and updating tasks in Monday
Retrieving information about projects
Automating work management
Configuration parameters
workspace_name
No
Name of the Monday.com workspace, used in the agent's instructions.
api_key
Yes
Your Monday.com API Key, used to authenticate with your account.
token_param
No
Name of the option used to pass the API key (default: --token). Rarely needs changing.
Custom parameters
apiVersion: API version to use
timeout: Maximum request time (seconds)
retries: Retries in case of error
maxQueries: GraphQL query complexity limit
resetInterval: Complexity limit reset interval (seconds)
How to get the parameters
After registering and logging in to Monday
Workspace Name:
Look in the left sidebar
You'll see the current workspace name (e.g., "Main Workspace", "Marketing Team")
Use that exact name
Api Key (API Token):
Click your profile photo (bottom left)
Select Admin (if you're an admin) or Developers
In the side menu, go to Developers → API Token
Or go directly to: https://monday.com/admin/integrations/api
In the "API Token" section:
Click "Generate" to create a new token
Or "Show" to see an existing one
Copy the token (often starts with
eyJ..., save the token securely!)
Token Param: default is --token, rarely needs changing
Finding Workspace ID:
URL:
https://mycompany.monday.com/workspaces/12345678The ID is
12345678
Board ID (for reference):
URL:
https://mycompany.monday.com/boards/123456789The ID is
123456789
API Token security
The API token has the same permissions as the user who generated it
It can access all of that user's boards and workspaces
Never share the token publicly
Rotate the token periodically for security
Last updated