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 🙏

© 2026 – Pkg Stats / Ryan Hefner

coda-mcp-server

v1.1.0

Published

Model Context Protocol server for Coda API integration

Downloads

178

Readme

Coda MCP Server

A Model Context Protocol (MCP) server for integrating with the Coda API. Provides comprehensive read/write operations for managing Coda documents, pages, tables, rows, and columns.

Features

  • 22 MCP Tools for complete Coda API coverage
  • Document, page, table, column, and row operations
  • Built-in rate limiting and async operation handling
  • Full TypeScript support with Zod validation

Configuration

Get Your Coda API Token

  1. Go to https://coda.io/account
  2. Navigate to "API Settings"
  3. Generate a new API token

Usage

Use with any MCP-compatible client like Claude/Cursor/VS Code. Add the following configuration to your MCP settings:

{
  "mcpServers": {
    "coda": {
      "command": "npx",
      "args": ["-y", "coda-mcp-server"],
      "env": {
        "CODA_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Replace your_api_token_here with the token you generated.

Available Tools

Documents (4 tools)

  • coda_list_docs - List all accessible documents
  • coda_get_doc - Get document details
  • coda_create_doc - Create a new document
  • coda_delete_doc - Delete a document

Pages (7 tools)

  • coda_list_pages - List pages in a document
  • coda_get_page - Get page details
  • coda_create_page - Create a new page with optional content (HTML/Markdown)
  • coda_update_page - Update page metadata and/or content (append/prepend/replace)
  • coda_delete_page - Delete a page
  • coda_get_page_content - Get structured page content elements
  • coda_delete_page_content - Delete page content (all or specific elements)

Tables (2 tools)

  • coda_list_tables - List tables in a document
  • coda_get_table - Get table details

Columns (2 tools)

  • coda_list_columns - List columns in a table
  • coda_get_column - Get column details

Rows (7 tools)

  • coda_list_rows - List rows with filtering and pagination
  • coda_get_row - Get a specific row
  • coda_insert_rows - Insert new rows
  • coda_upsert_rows - Insert or update rows by key columns
  • coda_update_row - Update an existing row
  • coda_delete_row - Delete a single row
  • coda_delete_rows - Delete multiple rows

Important Notes

Rate Limits

  • Read operations: 100 requests per 6 seconds
  • Write operations: 10 requests per 6 seconds

Async Operations

Many write operations return a requestId immediately. The actual operation is processed by Coda within seconds.

Upsert Behavior

When using coda_upsert_rows, if multiple rows match the key columns, all matching rows will be updated.

Development

Local Setup

  1. Prerequisite:

    • Node.js v18+
    • npm v9+
  2. Clone the repository:

git clone <repo>
cd coda-mcp-server
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Testing

npm run inspector  # Opens MCP Inspector

API Reference

Full Coda API documentation: https://coda.io/developers/apis/v1

License

MIT

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

Support

For issues related to:

  • This MCP server: Open an issue in this repository
  • Coda API: Visit https://coda.io/developers
  • MCP protocol: Visit https://modelcontextprotocol.io