Coda MCP Server

Coda MCP Server

This MCP server enables seamless integration with Coda.io for document, table, and row management. It provides tools to fetch, upsert, and delete data through natural language commands.

Category
Visit Server

README

MCP Server - Coda.io

A Model Context Protocol (MCP) server implementation for seamless integration with Coda's API, providing various tools for document, table, and data management.

Features

  • Table Operations
    • Fetch all tables from a document
    • Retrieve specific table data
    • Get table columns information
  • Row Management
    • Fetch rows from tables
    • Upsert (insert/update) rows
    • Delete rows
  • Column Operations
    • Fetch specific column details
    • Get column metadata

Prerequisites

  • Node.js (v20 or higher)
  • A Coda API key
  • TypeScript knowledge (for development)

Environment Setup

  1. Clone or fork this repository in Replit
  2. Create a .env file in the root directory:
    PORT=8000
    CODA_API_KEY=your_coda_api_key_here
    
  3. Replace your_coda_api_key_here with your actual Coda API key

Installation

The project uses npm for dependency management. To install dependencies:

npm install

Building the Project

Compile TypeScript files to JavaScript:

npx tsc

Running the Server

After building, start the server:

node dist/index.js

Or use the combined command:

npm install && npx tsc && node dist/index.js

The server will start on port 8000 by default, with the following endpoints available:

  • GET /sse - SSE connection endpoint
  • POST /messages - Message handling endpoint

Available Tools

  1. fetch-coda-docs

    • Fetches all available Coda documents
    • Optional parameters: isOwner, limit
  2. fetch-coda-tables

    • Fetches all tables from a specified document
    • Required parameter: docId
  3. fetch-coda-table

    • Fetches a specific table from a document
    • Required parameters: docId, tableId
  4. fetch-coda-table-columns

    • Retrieves columns information for a specific table
    • Required parameters: docId, tableId
  5. fetch-coda-rows

    • Fetches rows from a specified table
    • Required parameters: docId, tableId
  6. upsert-coda-rows

    • Inserts or updates rows in a table
    • Required parameters: docId, tableId, rows
  7. delete-coda-rows

    • Deletes specified rows from a table
    • Required parameters: docId, tableId, rowIds

Error Handling

The server implements comprehensive error handling:

  • Environment variable validation
  • API response validation
  • Request parameter validation
  • Proper error messages and logging

Development

The project is structured as follows:

src/
├── tools/           # Individual tool implementations
│   ├── fetch-coda-docs.tool.ts
│   ├── fetch-coda-tables.tool.ts
│   └── ...
└── index.ts        # Main server implementation

Built With

  • Express.js - Web framework
  • @modelcontextprotocol/sdk - MCP implementation
  • Zod - Runtime type checking
  • dotenv - Environment configuration

Known Limitations and Future Improvements

The current implementation of tools requires several improvements:

  • Enhanced JSON response handling and formatting
  • Implementation of pagination for large datasets
  • Better error handling and retry mechanisms
  • Rate limiting implementation
  • Batch processing for large operations
  • Caching mechanisms for frequently accessed data
  • There is more API tools to implement based on the documentation

MCP Client Implementation Example

Here are examples of how to implement this MCP server in Cursor:

  1. Configure the MCP server in Cursor's mcp.json: Cursor MCP JSON Configuration

  2. Enable and use the available tools in Cursor's settings: Cursor MCP Tools Configuration

License

This project is licensed under the ISC License.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured