@coretext-ai/qa-monday-mcp-server-sls-c6d7e8f9-a0b1-4234-b567-678901234567
v1.0.3
Published
MCP server with monday integration
Readme
qa-monday-mcp-server-sls
MCP server with monday integration
This MCP server was generated using the Template Orchestrator and includes the following integrations:
Available Tools
This MCP server provides 2 tools across 1 integrations:
Monday Tools
- monday_get_boards: Get boards accessible to the user
- monday_create_item: Create a new item in a board. Use get_board_structure endpoint to find valid group IDs before specifying group_id parameter to avoid 404 errors.
Installation
npm install @coretext-ai/qa-monday-mcp-server-sls-c6d7e8f9-a0b1-4234-b567-678901234567Environment Setup
Create a .env file with the following variables:
MONDAY_ACCESS_TOKEN=your_monday_access_token_hereUsage
Running the server
# Development mode
npm run dev
# Production mode
npm run build && npm startUsing with Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"qa-monday-mcp-server-sls": {
"command": "npx",
"args": ["@coretext-ai/qa-monday-mcp-server-sls-c6d7e8f9-a0b1-4234-b567-678901234567"],
"env": {
"MONDAY_ACCESS_TOKEN": "your_monday_access_token_here"
}
}
}
}Instructions for Fetching API Keys/Tokens
- COMING SOON
Advanced Features
Request Cancellation
This MCP server supports request cancellation according to the MCP cancellation specification. Clients can cancel in-progress requests by sending a notifications/cancelled message with the request ID.
When a request is cancelled:
- The server immediately stops processing the request
- Any ongoing API calls are aborted
- Resources are cleaned up
- No response is sent for the cancelled request
Progress Notifications
The server supports progress notifications for long-running operations according to the MCP progress specification.
To receive progress updates:
- Include a
progressTokenin your request metadata - The server will send
notifications/progressmessages with:- Current progress value
- Total value (when known)
- Human-readable status messages
Progress is reported for:
- Multi-step operations
- Batch processing
- Long-running API calls
- File uploads/downloads
Example progress notification:
{
"method": "notifications/progress",
"params": {
"progressToken": "operation-123",
"progress": 45,
"total": 100,
"message": "Processing item 45 of 100..."
}
}Generated Information
- Generated at: Thu Sep 04 2025 15:28:22 GMT-0400 (Eastern Daylight Time)
- Orchestrator version: 0.0.2
- Template repository: Coretext-AI-Dev/server-template-v2
- Total endpoints: 2
