npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@coddieapp/mcp-server

v1.0.7

Published

MCP server for Coddie project planning application

Readme

Coddie MCP Server

A Model Context Protocol (MCP) server that provides AI assistants with secure, read-only access to your Coddie project planning data. This allows AI assistants like Claude, Cursor, and Windsurf to help you work with your existing projects, development phases, implementation steps, and project rules.

What is Coddie?

Coddie is a SaaS project planning application that helps developers transform ideas into structured, production-ready development plans. It uses an interactive 4-step planning process and generates comprehensive PRD documents, development phases, and actionable implementation steps focused on Next.js + TypeScript + Supabase applications.

Prerequisites

  • Node.js (version 18 or higher)
  • A Coddie account with existing projects
  • API key from your Coddie account settings

Setup

1. Get Your Coddie API Key

  1. Log in to your Coddie account
  2. Navigate to SettingsAPI Keys
  3. Generate a new API key for MCP access
  4. Copy the generated API key (you'll need it for configuration)

2. Configure Your AI Assistant

Claude Desktop

Add this to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "coddie": {
      "command": "npx",
      "args": [
        "-y",
        "@coddieapp/mcp-server@latest",
        "--api-key",
        "your_coddie_api_key_here"
      ]
    }
  }
}

Other AI Assistants

For Cursor or Windsurf, follow their respective MCP configuration documentation using the same command structure above.

3. Restart Your AI Assistant

After updating the configuration file, restart your AI assistant to load the Coddie MCP server.

Security Considerations

⚠️ Important Security Notes:

  • Read-only access: This MCP server provides read-only access to your Coddie data
  • API key security: Keep your API key secure and don't share it publicly
  • Project scoping: The server only accesses projects belonging to your authenticated account
  • Review tool calls: Always review what the AI assistant is requesting before allowing tool execution

Available Tools

The Coddie MCP server provides these tools to AI assistants:

Project Management

  • list_projects - List all your Coddie projects
  • get_project_info - Get detailed project information (name, description, tech stack, status)
  • get_context - Get development progress and context summary for a project

Features & Planning

  • list_features - List all features for a specific project

Development Phases

  • list_phases - List all development phases for a project
  • get_phase - Get detailed phase information (title, description, status)
  • list_steps - List all implementation steps for a specific phase
  • get_step - Get detailed step information (content, code examples, completion status)

Project Rules

  • list_rules - List all rules for a specific project
  • get_rule - Get detailed rule information (file patterns, content, descriptions)

Example Usage

Once configured, you can ask your AI assistant questions like:

  • "What projects do I have in Coddie?"
  • "Show me the current phase for my e-commerce project"
  • "What implementation steps are left in the authentication phase?"
  • "What are the coding rules for my SaaS project?"

Troubleshooting

"API key is required" error

  • Ensure you've added the --api-key argument to your configuration
  • Verify your API key is correct and not expired in Coddie settings

"HTTP error! status: 401"

  • Your API key may be invalid or revoked
  • Generate a new API key in your Coddie account settings

Connection issues

  • Ensure you have an active internet connection
  • Check that you can access coddie.dev in your browser
  • Restart your AI assistant after configuration changes

Contributing

This MCP server is open source. Feel free to submit issues and pull requests on GitHub.

Support


Note: This MCP server requires an active Coddie account and existing projects to be useful. If you're new to Coddie, sign up and create your first project!