Install
$ agentstack add mcp-simokod-codecks-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
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 filteringlist-hand-cards- List cards currently in the authenticated user's handcreate-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
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Simokod
- Source: Simokod/codecks-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.