Codecks MCP
A simple Model Context Protocol (MCP) server for Codecks task management. This MCP provides essential card and deck manipulation capabilities for AI assistants like Cursor, Claude, and other MCP-compatible tools.
Features
- Manage Cards: Create, view, update, and organize your task cards
- Organize Decks: Create new decks and browse existing ones
- Smart Filtering: Find cards by status and archive state
Configuration
The Codecks MCP server is configured through the MCP client configuration file (typically ~/.cursor/mcp.json or similar). You need to set the following environment variables:
Required Configuration
CODECKS_AUTH_TOKEN- Your Codecks authentication tokenCODECKS_SUBDOMAIN- Your Codecks subdomain
Example MCP Configuration
{
"mcpServers": {
"codecks": {
"command": "node",
"args": ["/path/to/codecks-mcp/dist/server.js"],
"env": {
"CODECKS_AUTH_TOKEN": "your_actual_auth_token",
"CODECKS_SUBDOMAIN": "your_actual_subdomain"
}
}
}
}
Getting Your Codecks API Token
- Log in to your Codecks account
- Open your browser's Developer Tools (F12)
- Go to the Network tab
- Make any request to Codecks (refresh the page)
- Look for requests to
https://api.codecks.io - Find the
atcookie in the request headers - this is your API token - Copy the token and add it to your MCP configuration
Important: This token allows full access to your account. Keep it secure and don't share it with others.
Getting Your Subdomain
- Look at your Codecks URL:
https://[SUBDOMAIN].codecks.io - The subdomain part is what you need
- For example, if your URL is
https://myteam.codecks.io, your subdomain ismyteam - Copy the subdomain and add it to your MCP configuration
Available Tools
Project Information
list-spaces- List all available spaces in the project
Card Management
get-card- Get detailed information about a specific cardlist-cards- List cards in a deck with optional filteringcreate-card- Create a new card in a deckupdate-card- Update card propertiesget-card-options- Get available effort scale and priority labels for creating cards
Deck Management
list-decks- List all decks in the accountcreate-deck- Create a new deck
Adding New Tools
- Create a new tool file in
src/tools/extendingToolGroup - Implement the
register()method to register tools - Import and register the tool group in
server.ts - Add validation schemas using Zod
📝 License
MIT License