Skip to main content

A production-ready, type-safe MCP server for Coda.io with structured outputs

Project description

Coda MCP Server

PyPI version Python versions License Tests

A Model Context Protocol (MCP) server that provides seamless integration between Claude and Coda.io, enabling AI-powered document automation and data manipulation.

Note: This is an unofficial MCP server developed by TJC L.P. and is not affiliated with, endorsed by, or supported by Coda. For official Coda support and documentation, please visit coda.io.

Note: Version 1.1.0+ uses snake_case field names (e.g., browser_link instead of browserLink) for Python ecosystem compatibility. See CHANGELOG for migration details if upgrading from 1.0.x.

Features

Document Operations

  • List documents - Search and filter your Coda docs
  • Create documents - Generate new docs with optional templates
  • Read document info - Get metadata about any doc
  • Update documents - Modify doc properties like title and icon
  • Delete documents - Remove docs (use with caution!)

Page Management

  • List pages - Browse all pages in a doc
  • Create pages - Add new pages with rich content
  • Read pages - Get page details and content
  • Update pages - Modify page properties and content
  • Delete pages - Remove pages from docs
  • Export page content - Get full HTML/Markdown content with begin_page_content_export and get_page_content_export_status

Table & Data Operations

  • List tables - Find all tables and views in a doc
  • Get table details - Access table metadata and structure
  • List columns - Browse table columns with properties
  • Get column info - Access column formulas and formats

Row Operations

  • List rows - Query and filter table data
  • Get specific rows - Access individual row data
  • Insert/Update rows - Add or modify data with upsert_rows
  • Update single row - Modify specific row data
  • Delete rows - Remove single or multiple rows
  • Push buttons - Trigger button columns in tables

Formula Operations

  • List formulas - Find all named formulas in a doc
  • Get formula details - Access formula expressions

Authentication

  • Who am I - Get current user information

Installation

Prerequisites

  1. Coda API Key: Get your API token from Coda Account Settings
  2. Python 3.11+ (including 3.14): Required for the MCP server

Option 1: Install from PyPI (Recommended)

The Coda MCP server is available on PyPI and can be installed directly using uvx (recommended) or pip:

# Using uvx (no installation needed, just run)
uvx coda-mcp-server

# Or install globally with pip
pip install coda-mcp-server

Option 2: Install from Source

  1. Clone the repository

    git clone https://github.com/TJC-LP/coda-mcp-server.git
    cd coda-mcp-server
    
  2. Install dependencies

    uv sync
    
  3. Configure your API key

    cp .env.example .env
    

    Edit .env and replace changeme with your Coda API key:

    CODA_API_KEY=your-actual-api-key-here
    

Configuration

Option 1: Claude Code (Recommended for Development)

For using with Claude Code during development:

  1. Set up your API key in .env:

    cp .env.example .env
    # Edit .env and add your Coda API key
    
  2. MCP configuration is already included!

    The repository includes a .mcp.json file that automatically configures the Coda MCP server:

    {
      "mcpServers": {
        "coda": {
          "command": "uv",
          "args": ["run", "coda-mcp-server"]
        }
      }
    }
    
  3. Reload Claude Code - The MCP server will be automatically available

Note: The API key is loaded from .env (which is gitignored), so .mcp.json can be safely committed

Option 2: Claude Desktop

To use the Coda MCP server with Claude Desktop, you need to add it to your Claude Desktop configuration file.

Configuration File Location:

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

Add the Coda MCP Server:

Edit the configuration file and add the Coda server to the mcpServers section:

{
  "mcpServers": {
    "coda": {
      "command": "uvx",
      "args": ["coda-mcp-server"],
      "env": {
        "CODA_API_KEY": "your-coda-api-key-here"
      }
    }
  }
}

Important: Replace your-coda-api-key-here with your actual Coda API key from Coda Account Settings.

Alternative: Using Local Installation

If you installed from source, you can point to your local installation:

{
  "mcpServers": {
    "coda": {
      "command": "uv",
      "args": [
         "run", 
         "--directory", 
         "/path/to/repo",
         "coda-mcp-server"
      ],
      "env": {
        "CODA_API_KEY": "your-coda-api-key-here"
      }
    }
  }
}

Verify Installation

After adding the configuration:

  1. Restart Claude Desktop
  2. Look for the settings icon in the bottom of your conversation
  3. Click it and verify that "coda" is listed as a connected server
  4. You should see 26 available Coda tools when you click coda in the dropdown and can toggle the ones that you need specifically.

Usage in Claude

Once installed, you can use Coda operations directly in Claude by prefixing commands with coda:. Here are some examples:

Document Operations

# List all your docs
Use coda:list_docs with is_owner: true, is_published: false, query: ""

# Get info about a specific doc
Use coda:get_doc_info with doc_id: "your-doc-id"

# Create a new doc
Use coda:create_doc with title: "My New Doc"

Working with Tables

# List tables in a doc
Use coda:list_tables with doc_id: "your-doc-id"

# Get all rows from a table with column names
Use coda:list_rows with doc_id: "your-doc-id", table_id_or_name: "Table Name", use_column_names: true

# Insert a new row
Use coda:upsert_rows with doc_id: "your-doc-id", table_id_or_name: "Table Name", rows_data: [{
  cells: [
    {column: "Name", value: "John Doe"},
    {column: "Email", value: "john@example.com"}
  ]
}]

Page Content Export

# Start page export
Use coda:begin_page_content_export with doc_id: "your-doc-id", page_id_or_name: "Page Name", output_format: "markdown"

# Check export status and get content
Use coda:get_page_content_export_status with doc_id: "your-doc-id", page_id_or_name: "Page Name", request_id: "request-id-from-previous-step"

API Reference

Core Functions

Document Management

  • list_docs(is_owner, is_published, query, ...) - List available docs
  • get_doc_info(doc_id) - Get document metadata
  • create_doc(title, source_doc?, timezone?, ...) - Create new document
  • update_doc(doc_id, title?, icon_name?) - Update document properties
  • delete_doc(doc_id) - Delete a document

Page Operations

  • list_pages(doc_id, limit?, page_token?) - List pages in a doc
  • get_page(doc_id, page_id_or_name) - Get page details
  • create_page(doc_id, name, subtitle?, ...) - Create new page
  • update_page(doc_id, page_id_or_name, ...) - Update page properties
  • delete_page(doc_id, page_id_or_name) - Delete a page
  • begin_page_content_export(doc_id, page_id_or_name, output_format?) - Start async page export
  • get_page_content_export_status(doc_id, page_id_or_name, request_id) - Poll export status and download content

Table Operations

  • list_tables(doc_id, limit?, sort_by?, ...) - List all tables
  • get_table(doc_id, table_id_or_name) - Get table details
  • list_columns(doc_id, table_id_or_name, ...) - List table columns
  • get_column(doc_id, table_id_or_name, column_id_or_name) - Get column details

Row Operations

  • list_rows(doc_id, table_id_or_name, query?, ...) - List and filter rows
  • get_row(doc_id, table_id_or_name, row_id_or_name, ...) - Get specific row
  • upsert_rows(doc_id, table_id_or_name, rows_data, ...) - Insert or update rows
  • update_row(doc_id, table_id_or_name, row_id_or_name, row, ...) - Update single row
  • delete_row(doc_id, table_id_or_name, row_id_or_name) - Delete single row
  • delete_rows(doc_id, table_id_or_name, row_ids) - Delete multiple rows
  • push_button(doc_id, table_id_or_name, row_id_or_name, column_id_or_name) - Trigger button

Formula Operations

  • list_formulas(doc_id, limit?, sort_by?) - List named formulas
  • get_formula(doc_id, formula_id_or_name) - Get formula details

Authentication

  • whoami() - Get current user information

Development

Project Structure

coda-mcp-server/
├── src/
│   ├── coda_mcp_server/
│   │   ├── server.py        # MCP server orchestrator (700 lines)
│   │   ├── client.py        # HTTP client with Pydantic serialization
│   │   ├── models/          # 83 Pydantic models (7 modules)
│   │   │   ├── __init__.py
│   │   │   ├── common.py    # Shared types and base models
│   │   │   ├── docs.py      # Document models
│   │   │   ├── pages.py     # Page models
│   │   │   ├── tables.py    # Table and column models
│   │   │   ├── rows.py      # Row and cell models
│   │   │   ├── exports.py   # Export workflow models
│   │   │   └── formulas.py  # Formula models
│   │   └── tools/           # Pure functions (5 modules)
│   │       ├── __init__.py
│   │       ├── docs.py      # Document operations
│   │       ├── pages.py     # Page operations
│   │       ├── tables.py    # Table operations
│   │       ├── rows.py      # Row operations
│   │       └── formulas.py  # Formula operations
│   └── resources/
│       └── coda-openapi.yml  # Coda API specification
├── tests/                    # 44 tests
│   ├── conftest.py
│   ├── test_models.py
│   └── test_client_requests.py
├── .env.example
├── .mcp.json                 # Claude Code integration
└── pyproject.toml

Running Locally for Development

# Install dependencies
uv sync

# Run the server directly
uv run python src/coda_mcp_server/server.py

Troubleshooting

Common Issues

  1. "API Error 401: Unauthorized"

    • Check that your CODA_API_KEY in .env is correct
    • Ensure your API key has the necessary permissions
  2. "Rate limit exceeded"

    • Coda API has rate limits; wait for the specified time before retrying
    • The server includes automatic rate limit detection
  3. Boolean parameters not working

    • The server automatically converts boolean values to strings ("true"/"false")
    • This is handled internally, just use boolean values normally
  4. Page export issues

    • Use the two-step export workflow: begin_page_content_export then get_page_content_export_status
    • The status check automatically downloads content when ready

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

For issues and feature requests, please use the GitHub Issues page.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coda_mcp_server-1.2.0.tar.gz (38.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coda_mcp_server-1.2.0-py3-none-any.whl (39.6 kB view details)

Uploaded Python 3

File details

Details for the file coda_mcp_server-1.2.0.tar.gz.

File metadata

  • Download URL: coda_mcp_server-1.2.0.tar.gz
  • Upload date:
  • Size: 38.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coda_mcp_server-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e7721863ce0b96a89418035b46e742a643a75f3c27c5e8117eaaa2698841dd4e
MD5 8c40b5585a6757de7f396a8eaf51b1ca
BLAKE2b-256 3ab608189077c7599f54be3f1bcc7d1718df1ef66eb516fe9a06ed94a96de517

See more details on using hashes here.

Provenance

The following attestation bundles were made for coda_mcp_server-1.2.0.tar.gz:

Publisher: release.yml on TJC-LP/coda-mcp-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coda_mcp_server-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for coda_mcp_server-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d4d108114549f01aeb2358f4b44c1256fdcfacfc596c9a4c0bc82d65975502f2
MD5 9af925b4de1453de486aef6df0e533a5
BLAKE2b-256 7b2a15e4e653a71b34adc68cf56390c9d4cf8e61bf46abba9da2abe007c8ebd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for coda_mcp_server-1.2.0-py3-none-any.whl:

Publisher: release.yml on TJC-LP/coda-mcp-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page