Codecks MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/microkorg/Codecks-MCP.git
cd Codecks-MCP
bash setup.sh
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "CODECKS_TOKEN=${CODECKS_TOKEN}" -e "CODECKS_URL=${CODECKS_URL}" -e "CODECKS_USER_ID=${CODECKS_USER_ID}" codecks-mcp-867d -- node "<FULL_PATH_TO_CODECKS_MCP>/dist/index.js"

Replace <FULL_PATH_TO_CODECKS_MCP>/dist/index.js with the actual folder you prepared in step 1.

Required:CODECKS_TOKENCODECKS_URLCODECKS_USER_ID+ 1 optional
README.md

Interact with Codecks project management directly from AI assistants.

Codecks MCP Server

An MCP (Model Context Protocol) server that lets AI assistants interact with Codecks project management. Query cards, create tasks, update status, and manage your game dev workflow directly from Claude or other MCP-compatible AI tools.

Repository: github.com/microkorg/Codecks-MCP

Features

  • List & Search Cards - Query all cards or filter by deck/project/status, search by title/content
  • Create Cards & Decks - Add new tasks directly from your AI assistant, reference decks by name or ID
  • Update Cards - Modify card content, move between decks, rename decks
  • Status Management - Mark cards complete, archive/unarchive finished work
  • Space Management - List, create, rename, and delete spaces (deck containers)
  • Flexible Project Filtering - Set a default project or specify per-call for cross-project workflows

Prerequisites

Quick Start

git clone https://github.com/microkorg/Codecks-MCP.git
cd Codecks-MCP

Then run the setup script for your platform:

  • Windows: setup.bat
  • Mac/Linux: bash setup.sh

This installs dependencies and creates your .env config file. See Configuration below for how to find your token and user ID.

Configuration

Edit .env with your Codecks credentials:

# Required: Your auth token (see below for how to find it)
CODECKS_TOKEN=your_token_here

# Required: Your Codecks organization URL
CODECKS_URL=yourteam.codecks.io

# Optional: Default project filter (can be overridden per-call)
CODECKS_DEFAULT_PROJECT=My Project

# Required for create/update operations
CODECKS_USER_ID=your_user_id_here

Finding Your Token

  1. Open your Codecks organization in your browser
  2. Press F12 to open Developer Tools
  3. Go to Application tab > Cookies > your codecks domain
  4. Find the cookie named at and copy its value

Finding Your User ID

  1. Open Developer Tools (F12) > Network tab
  2. Create any card in Codecks
  3. Find the request to api.codecks.io/dispatch/cards/create
  4. Look at the request payload - the userId field is your user ID

Usage with Claude Code

Add to your .claude/settings.json:

{
  "mcpServers": {
    "codecks": {
      "command": "node",
      "args": ["/path/to/codecks-mcp/index.js"],
      "cwd": "/path/to/codecks-mcp"
    }
  }
}

Optionally, prevent Claude from reading your credentials:

{
  "deny": ["path/to/codecks-mcp/.env"]
}

Available Tools

Cards

Tool Description
codecks_list_cards List all cards, optionally filter by deck name, project, and/or status
codecks_search_cards Search cards by title or content
codecks_get_card Get a specific card by ID
codecks_create_card Create a new card in a deck (by ID or name)
codecks_update_card Update card content
codecks_move_card Move a card to a different deck
codecks_complete_card Mark a card as complete or incomplete
codecks_archive_card Archive a card
codecks_unarchive_card Unarchive a card, making it visible again

Decks

Tool Description
codecks_list_decks List all decks in a project with card counts and space info
codecks_create_deck Create a new deck, optionally in a specific space
codecks_update_deck Rename a deck

Spaces

Tool Description
codecks_list_spaces List all spaces in a project
codecks_create_space Create a new space (deck container)
codecks_rename_space Rename a space
codecks_delete_space Delete a space (cannot delete the default space)

Projects

Tool Description
codecks_list_projects List all projects in your organization
codecks_create_project Create a new project

Example Prompts

Once configured, you can ask Claude things like:

  • "What cards are in my backlog?"
  • "Show me all started cards"
  • "Create a card for implementing the save system in the Ideas deck"
  • "Mark the authentication card as complete"
  • "Move the UI polish card to the In Progress deck"
  • "Show me all cards in the other project"
  • "Create a deck called 'Sprint 1' in the Design space"
  • "What spaces are in this project?"
  • "Rename the Art deck to Art Assets"

Token Expiration

The at cookie token may expire. If you start getting authentication errors, grab a fresh token from your browser cookies.

License

MIT

Tools (18)

codecks_list_cardsList all cards, optionally filter by deck name, project, and/or status
codecks_search_cardsSearch cards by title or content
codecks_get_cardGet a specific card by ID
codecks_create_cardCreate a new card in a deck
codecks_update_cardUpdate card content
codecks_move_cardMove a card to a different deck
codecks_complete_cardMark a card as complete or incomplete
codecks_archive_cardArchive a card
codecks_unarchive_cardUnarchive a card, making it visible again
codecks_list_decksList all decks in a project with card counts and space info
codecks_create_deckCreate a new deck, optionally in a specific space
codecks_update_deckRename a deck
codecks_list_spacesList all spaces in a project
codecks_create_spaceCreate a new space
codecks_rename_spaceRename a space
codecks_delete_spaceDelete a space
codecks_list_projectsList all projects in your organization
codecks_create_projectCreate a new project

Environment Variables

CODECKS_TOKENrequiredYour Codecks auth token
CODECKS_URLrequiredYour Codecks organization URL
CODECKS_USER_IDrequiredYour Codecks user ID
CODECKS_DEFAULT_PROJECTDefault project filter

Configuration

claude_desktop_config.json
{"mcpServers": {"codecks": {"command": "node", "args": ["/path/to/codecks-mcp/index.js"], "cwd": "/path/to/codecks-mcp"}}}

Try it

What cards are in my backlog?
Show me all started cards
Create a card for implementing the save system in the Ideas deck
Mark the authentication card as complete
Move the UI polish card to the In Progress deck

Frequently Asked Questions

What are the key features of Codecks MCP Server?

List and search cards by deck, project, or status. Create and update cards directly from AI. Manage decks and spaces within projects. Mark cards as complete or archive them. Support for cross-project workflows.

What can I use Codecks MCP Server for?

Quickly logging tasks while coding without leaving the IDE. Automating status updates for game development sprints. Organizing project backlogs using natural language commands. Managing multiple game projects from a single AI interface.

How do I install Codecks MCP Server?

Install Codecks MCP Server by running: git clone https://github.com/microkorg/Codecks-MCP.git && cd Codecks-MCP && bash setup.sh

What MCP clients work with Codecks MCP Server?

Codecks MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Codecks MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare