minimal-my-items-server
v1.0.0
Published
Minimal Monday.com My Items MCP Server
Downloads
10
Readme
Monday.com MCP Server
A Monday.com Model Context Protocol (MCP) server implementation in TypeScript for handling Monday.com task-related operations.
Getting Started
Installation
Clone the repository
git clone https://github.com/Nasseratic/mcp-server-monday.git cd mcp-server-mondayInstall dependencies
pnpm installConfiguration Setup
Configure your environment variables in your
~/.cursor/mcp.jsonfile instead of using a.envfile:{ "mcpServers": { "monday": { "command": "pnpm", "args": ["dlx", "tsx", "/path/to/your/mcp-server-monday/src/mcp.ts"], "env": { "MONDAY_API_TOKEN": "your_monday_api_token", "MONDAY_TASKS_BOARD_ID": "your_monday_board_id" } } } }- Replace
/path/to/your/mcp-server-mondayin the configuration with the actual path where you cloned the repository. MONDAY_API_TOKEN: Your Monday.com API token (v2 Token)MONDAY_TASKS_BOARD_ID: The ID of the Monday.com board containing your tasks
To get your Monday.com API token:
- Go to your Monday.com account
- Click on your avatar > Developers > My API tokens
- Generate a new API token with appropriate permissions
To get your Monday.com board ID:
- Open the board in Monday.com
- The board ID is the number in the URL after "boards/"
- Replace
