You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP →
Socket
Book a DemoInstallSign in
Socket

context-coder

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

context-coder

Context Coder: MCP server providing secure file system operations with relative path handling for AI context management

1.3.1
latest
npmnpm
Version published
Weekly downloads
18
-93.57%
Maintainers
0
Weekly downloads
Ā 
Created
Source

🄄 Context Coder MCP

Context Coder (aka. Coco) provides AI models with an MCP tools to load your entire codebase into the LLM context. This gives AI assistants everything they need to write code that fits your existing patterns and architecture.

šŸ“¦ Available on npm

Quick Start

Context Coder supports three main ways of running it:

  • Via Claude Desktop
  • Via Claude Code
  • Via other clients

Claude Desktop + npx

Setup instructions

Start a terminal in your current project folder and run:

npx context-coder

For line-based partial editing instead of complete file rewrites, use:

npx context-coder --edit-file-mode

Then add this to the Claude Desktop config and restart Claude Desktop afterwards:

{
  "mcpServers": {
    "context-coder": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "http://localhost:3001/mcp"]
    }
  }
}

Next, create a Claude Project and insert the recommended starting prompt just below this section.

Claude Desktop + Docker

Setup instructions

Running via Docker provides better isolation since the container won't be able to write things outside of your project directory.

Create a docker-compose.yml file in the project(s) you want to work on.

services:
  context-coder:
    image: ghcr.io/khromov/context-coder:full
    ports:
      - '3001:3001'
    volumes:
      - ./:/app
    working_dir: /app

For the edit variant (line-based partial edits):

services:
  context-coder:
    image: ghcr.io/khromov/context-coder:edit
    ports:
      - '3001:3001'
    volumes:
      - ./:/app
    working_dir: /app

Start the service:

docker-compose up

Then add this to the Claude Desktop config and restart Claude Desktop afterwards:

{
  "mcpServers": {
    "context-coder": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "http://localhost:3001/mcp"]
    }
  }
}

Since docker-compose up already knows which folder it's running in, we can easily switch between projects by launching docker-compose up in different directories. Don't forget to switch between Claude Projects when you do this!

Next, create a Claude Project and insert the recommended starting prompt just below this section.

Claude Desktop starting prompt

Recommended setup and starting prompt: Create a Claude Project and add this to your project instructions:

Starting prompt (default - without edit mode)
Use the Context Coder MCP to edit files. Remember that partial edits are not allowed, always write out the edited files in full through the MCP. You MUST call the get_codebase_size and get_codebase MCP tools at the start of every new chat. Do not call read_file, as you already have the codebase via get_codebase - use this reference instead. ONLY call read_file if you can't find the file in your context. Do not create any artifacts unless the user asks for it, just call the write_file tool directly with the updated code. If you get cut off when writing code and the user asks you to continue, continue from the last successfully written file to not omit anything.
Starting prompt (with edit mode enabled)

If you're using --edit-file-mode, use this prompt instead:

Use the Context Coder MCP to edit files. You have access to both edit_file (for line-based partial edits) and write_file (for complete file rewrites) tools. Use edit_file when making small, targeted changes and write_file when rewriting entire files or making extensive changes. Always use write_file if writing with edit_file fails. You MUST call the get_codebase_size and get_codebase MCP tools at the start of every new chat. Do not call read_file, as you already have the codebase via get_codebase - use this reference instead. ONLY call read_file if you can't find the file in your context. Do not create any artifacts unless the user asks for it, just call the MCP tools directly with the updated code. If you get cut off when writing code and the user asks you to continue, continue from the last successfully written file to not omit anything.

Claude Code

Setup instructions

Option 1: npx

Create .mcp.json in your project root:

{
  "mcpServers": {
    "context-coder": {
      "command": "npx",
      "args": ["-y", "context-coder", "--mini", "--stdio"]
    }
  }
}

For line-based partial editing instead of complete file rewrites, use:

{
  "mcpServers": {
    "context-coder": {
      "command": "npx",
      "args": ["-y", "context-coder", "--mini", "--stdio", "--edit-file-mode"]
    }
  }
}

You're done!

Option 2: Docker

Running via Docker provides better isolation since the container won't be able to write things outside of your project directory.

Create .mcp.json in your project root:

{
  "mcpServers": {
    "context-coder": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-v",
        "./:/app",
        "-w",
        "/app",
        "-e",
        "COCO_MCP_TRANSPORT=stdio",
        "ghcr.io/khromov/context-coder:mini"
      ]
    }
  }
}

Option 3: Via HTTP + mcp-remote

For Claude Code, create .mcp.json in your project root:

{
  "mcpServers": {
    "context-coder": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-remote", "http://localhost:3001/mcp"],
      "env": {}
    }
  }
}

And create docker-compose.yml in your project:

services:
  context-coder:
    image: ghcr.io/khromov/context-coder:mini
    ports:
      - '3001:3001'
    volumes:
      - ./:/app
    working_dir: /app
    environment:
      - COCO_MCP_TRANSPORT=http
    restart: unless-stopped

Start Context Coder with docker-compose up and Claude Code will automatically connect.

The reason for using the mini build is that Claude Code already comes with file editing tools built-in.

Recommended starting prompt: Add this at the start of your CLAUDE.md file.

You have access to both Claude Code's built-in file tools and the Context Coder MCP for enhanced codebase analysis. Follow this workflow:

1. ALWAYS start every new chat by calling get_codebase_size and get_codebase MCP tools to ingest and understand the full project context
2. Use Context Coders's codebase analysis as your primary reference - avoid reading files since you already have the complete codebase, only read file if you are missing something or if the user specifically requests it.
3. Remember: Context Coder gives you full codebase context, Claude Code gives you precise editing control - use both strategically

Limiting which files are including when fetching the codebase

Context Coder works best in small and medium-sized repositories, as it's limited to the maximum context of your LLM (in the case of Claude Sonnet/Opus 4, that's 200,000 tokens). Your whole codebase might not fit, and for this case you can create a .cocoignore file in the root of your project. This file works similarly to .gitignore, allowing you to specify files and directories that should be excluded from the command to aggregate your code - this could be test fixtures, snapshots, large test files or other secondary information that isn't useful to the LLM. Many common build artifacts and folders are already automatically excluded (such as node_modules). The LLM can also help you with this - ask it to run the get_codebase_top_largest_files tool and suggest files that are large and/or suitable for inclusion in a .cocoignore file.

Configuration

Volume Mounts and Environment Variables

Volume Mounts

Mount a specific directory:

volumes:
  - ./src:/app # Only expose src directory

Environment Variables

  • COCO_DEV: "true" or "false" to mount the ./mount folder instead of using /app
  • COCO_MCP_TRANSPORT: Set to stdio or http (default: http)
  • COCO_PORT: Override default port 3001 (HTTP mode only)
  • CONTEXT_CODER_EDIT_MODE: Set to "true" to enable edit_file tool (equivalent to --edit-file-mode flag)

Available Tools

ToolPurpose
get_codebase_sizeCheck codebase size and token counts - LLMs should call this first to ensure codebase isn't too large
get_codebaseGenerate AI-digestible summary of entire codebase (paginated) - Call after checking size
get_codebase_top_largest_filesGet top X largest files in codebase - helpful for identifying files to add to .cocoignore
read_fileRead file contents (only use when specifically asked to re-read or for debugging)
write_fileCreate or overwrite files
edit_fileMake line-based partial edits to files (available when --edit-file-mode is enabled)
create_directoryCreate directories
list_directoryList directory contents (only use when specifically asked or for debugging)
directory_treeGet directory structure as JSON (only use when specifically asked or for debugging)
move_fileMove or rename files
search_filesSearch by pattern
execute_commandRun shell commands

Available Prompts

Context Coder provides MCP prompts that help configure Claude properly for your development workflow:

PromptPurpose
context-coder-claude-desktopDefault starting prompt for Claude Desktop - configures proper MCP tool usage
context-coder-claude-codeDefault starting prompt for Claude Code - explains how to use both tool sets together

To use these prompts in Claude Code:

  • Type / to open the prompt menu
  • Find "context-coder" in the list, then "Context Coder: Claude Code Setup"
  • The prompt will be inserted automatically
  • You may directly add a task after the prompt, eg /context-coder:Context Coder: Claude Code Setup (MCP) Add a new endpoint that returns a random number

To use these prompts in Claude Desktop:

Use the "plus" button just below the chat text box, the Add from <name of server>.

CLI Commands

Context Coder also provides a convenient CLI command to inspect your codebase:

List Files Command

npx context-coder ls [options]

Lists all files that will be included in the codebase analysis, showing file sizes and respecting .cocoignore patterns.

Options:

  • --sort-by <type> - Sort by "size" or "path" (default: "size")
  • -r, --reverse - Reverse sort order (ascending instead of descending)
  • -d, --directory <dir> - Directory to analyze (default: current directory)
  • --help - Show usage information

Examples:

npx context-coder ls                           # Default: sort by size descending
npx context-coder ls --sort-by path            # Sort alphabetically by path
npx context-coder ls -r                        # Sort by size ascending
npx context-coder ls --sort-by path --reverse  # Sort by path Z-A
npx context-coder ls -d ./src                  # Analyze specific directory

The command shows:

  • Total file count and token estimates for Claude and ChatGPT
  • Whether a .cocoignore file is being used
  • Formatted list of all files with sizes

Runtime Options

Context Coder supports several runtime options to modify its behavior:

npx context-coder [options]

Options:

  • -m, --mini - Run in mini mode (only core tools)
  • -f, --full - Run in full mode (all tools) - this is the default
  • -s, --stdio - Use stdio transport instead of HTTP
  • -e, --edit - Enable the edit_file tool for line-based partial edits instead of requiring complete file rewrites with write_file
  • --edit-file-mode - Same as -e, --edit (legacy flag)
  • -p, --port <number> - Port to listen on (default: 3001)
  • -c, --claude-token-limit <number> - Set Claude token limit - useful for models with larger context windows (default: 150000)
  • -g, --gpt-token-limit <number> - Set GPT token limit - useful for models with larger context windows (default: 128000)

Examples:

npx context-coder                           # Default: full mode with HTTP transport
npx context-coder -m                        # Mini mode with core tools only
npx context-coder -s                        # Use stdio transport (for Claude Code)
npx context-coder -e                        # Enable partial file editing
npx context-coder -p 8080                   # Use port 8080 instead of 3001
npx context-coder -m -s                     # Combine options for mini mode with stdio
npx context-coder -s -e -p 8080             # stdio transport with edit mode enabled and custom port

Token Limit Examples:

Context Coder helps detect when your codebase might exceed your model's context window. You can adjust these limits based on the model you're using:

# For Claude Enterprise with 500k context window
npx context-coder -c 500000

# For GPT-4 Turbo with 128k context
npx context-coder -g 128000

# For models with very large context windows
npx context-coder -c 1000000 -g 1000000

# Combine with other options
npx context-coder --edit-file-mode -c 300000 -p 8080

Model Context Window Reference:

  • Claude Sonnet 3.5: ~200k tokens
  • Claude Enterprise: ~500k tokens
  • GPT-4: ~128k tokens
  • GPT-4 Turbo: ~128k tokens
  • Custom/Local Models: Varies widely

Setting appropriate token limits helps Context Coder provide better warnings when your codebase might not fit in your model's context window.

Development

Development setup and commands

Clone and install dependencies:

npm install

Build and run:

npm run build
npm start  # HTTP mode
npm start -- --stdio  # stdio mode

Development mode with auto-reload:

npm run dev

In development mode, file operations are sandboxed to the ./mount directory.

Docker Variants

Context Coder provides three Docker variants:

VariantImageDescription
Fullghcr.io/khromov/context-coder:fullFull mode with all tools using write_file (complete file rewrites)
Minighcr.io/khromov/context-coder:miniCore analysis tools only (get_codebase_size, get_codebase, get_codebase_top_largest_files)
Editghcr.io/khromov/context-coder:editFull mode with edit_file tool for line-based partial edits in addition to write_file

Docker Build

Docker build instructions

Build all versions:

./build-all.sh

Or build individually:

# Full version
docker build -t context-coder:latest .

# Mini version
docker build --build-arg COCO_BUILD_TYPE=mini -t context-coder:mini .

# Edit version
docker build --build-arg COCO_BUILD_TYPE=edit -t context-coder:edit .

Build a custom image:

FROM ghcr.io/khromov/context-coder:full
# Add customizations

Or build from source:

docker build -t my-coco .

License

MIT

FAQs

Package last updated on 29 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with āš”ļø by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.