Coda MCP Server (thierryvm/coda-mcp-server) is an MCP server listed on the M8ven Trust Index. It scores 56 out of 100, grade D. It declares 35 tools. No publisher has claimed this listing.

D
Caution
56/100

Coda MCP Server

Integrates Coda.io with Claude, enabling direct access to docs, pages, tables, and data via natural language commands.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

thierryvm

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 12 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
35 tools verified — handlers match their declared behaviour
20 read-only tools verified — handlers contain no write/delete/exec
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 2 credentials: CODA_API_TOKEN, MCP_ACCESS_TOKEN
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes35 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

coda_list_docs

List and search Coda documents accessible by the API token. Returns doc titles, IDs, owner, creation dates and URLs. Args: - query (string, optional): Filter by title keywords - limit (number): Max docs to return, 1–500 (default 25) - page_token (string, optional): Pagination token from prev

coda_get_doc

Get metadata for a specific Coda document by its ID. Args: - doc_id (string): The doc ID (e.g. "AbCdEfGh") - response_format: 'markdown' or 'json' Returns: Doc metadata including name, owner, pages count, browserLink.

coda_create_doc

Create a new Coda document. Args: - title (string): Title for the new document - source_doc (string, optional): ID of a doc to duplicate as template Returns: New doc ID, name, and browserLink.

coda_update_doc

Update a document's title or icon. Args: - doc_id (string): The document ID - title (string, optional): New title for the document - icon_name (string, optional): Emoji icon name (e.g. "gear") Returns: Confirmation with updated doc info.

coda_delete_doc

Delete a Coda document permanently. THIS ACTION IS IRREVERSIBLE. Args: - doc_id (string): The document ID to delete Returns: Confirmation of deletion.

coda_list_pages

List all pages in a Coda document. Args: - doc_id (string): The document ID - limit (number): Max pages to return (default 25) - page_token (string, optional): Pagination token - response_format: 'markdown' or 'json' Returns: List of pages with id, name, type, browserLink.

coda_update_page

Update a page's name or content in a Coda document. Args: - doc_id (string): The document ID - page_id (string): The page ID or name - name (string, optional): New name for the page - subtitle (string, optional): New subtitle - icon_name (string, optional): Emoji icon name (e.g. "gear")

coda_rename_page

Renomme une page existante. Raccourci explicite pour changer uniquement le nom.

coda_delete_page

Delete a page from a Coda document permanently. THIS ACTION IS IRREVERSIBLE. Args: - doc_id (string): The document ID - page_id (string): The page ID or name to delete Returns: Confirmation of deletion.

coda_list_tables

List all tables and views in a Coda document. Args: - doc_id (string): The document ID - table_type (string, optional): Filter by type — 'table' or 'view' - limit (number): Max tables (default 25) - page_token (string, optional): Pagination token - response_format: 'markdown' or 'json' R

coda_get_table

Get metadata for a specific table or view. Args: - doc_id (string): The document ID - table_id (string): The table ID or name - response_format: 'markdown' or 'json' Returns: Table metadata including id, name, type, rowCount, browserLink.

coda_list_columns

List all columns in a Coda table, including their IDs and types. Useful to get column IDs before reading/writing rows, since Coda rows use column IDs as keys. Args: - doc_id (string): The document ID - table_id (string): The table ID or name - response_format: 'markdown' or 'json' Returns:

coda_get_column

Get detailed information about a specific column, including its formula and format. Especially useful to inspect calculated column formulas and currency/number format settings. Args: - doc_id (string): The document ID - table_id (string): The table ID or name - column_id (string): The column

coda_list_rows

List rows from a Coda table with optional filtering and sorting. Args: - doc_id (string): The document ID - table_id (string): The table ID or name - query (string, optional): Filter rows — format: "columnId:value" - sort_by (string, optional): Sort column ID - limit (number): Max rows (d

coda_get_row

Get a specific row from a Coda table by its ID or name. Args: - doc_id (string): The document ID - table_id (string): The table ID or name - row_id (string): The row ID or name - value_format: 'simple' or 'rich' - response_format: 'markdown' or 'json' Returns: Row with all column values.

coda_upsert_rows

Insert or update rows in a Coda table (base table only, not views). Provide row data as an array of objects, each with column IDs as keys. Use coda_list_columns to get the column IDs first. Args: - doc_id (string): The document ID - table_id (string): The BASE table ID (not a view) - rows (a

coda_update_row

Update specific cells in an existing row. Args: - doc_id (string): The document ID - table_id (string): The table ID - row_id (string): The row ID - cells (array): Array of {column, value} pairs to update Returns: Request ID confirmation.

coda_delete_row

Delete a specific row from a Coda table. This action is irreversible. Args: - doc_id (string): The document ID - table_id (string): The table ID - row_id (string): The row ID to delete Returns: Confirmation with request ID.

coda_list_formulas

List all named formulas in a Coda document. Args: - doc_id (string): The document ID - response_format: 'markdown' or 'json' Returns: List of formulas with id, name, and value.

coda_get_formula

Get details of a specific named formula in a Coda document. Args: - doc_id (string): The document ID - formula_id (string): The formula ID or name - response_format: 'markdown' or 'json' Returns: Formula name, id, and computed value.

coda_search_docs

Search across all accessible Coda documents by title keyword. Args: - query (string): Search term - limit (number): Max results (default 25) - response_format: 'markdown' or 'json' Returns: Matching docs with id, name, browserLink.

coda_get_page_content

Récupère le contenu complet d'une page Coda au format markdown.

coda_peek_page

Aperçu des premières lignes d'une page Coda (évite de charger tout le contenu).

coda_create_page

Crée une nouvelle page dans un document Coda, avec contenu markdown optionnel.

coda_replace_page_content

Remplace entièrement le contenu d'une page par du markdown. ATTENTION : action irréversible.

coda_append_page_content

Ajoute du contenu markdown à la fin d'une page Coda.

coda_duplicate_page

Duplique une page existante sous un nouveau nom.

coda_resolve_link

Résout une URL Coda (browserLink) en métadonnées : type d'objet, ID doc, ID page, etc.

coda_delete_rows

Supprime plusieurs lignes d'une table en une seule opération. Action irréversible.

coda_push_button

Déclenche un bouton Coda sur une ligne spécifique d'une table.

coda_list_controls

List all controls (formula cells, buttons, date pickers, etc.) in a Coda document. Args: - doc_id (string): The document ID - limit (number): Max controls (default 25) - page_token (string, optional): Pagination token - response_format: 'markdown' or 'json' Returns: List of controls with i

coda_get_control

Get details of a specific control (formula cell, button, date picker...) in a Coda document. Args: - doc_id (string): The document ID - control_id (string): The control ID or name - response_format: 'markdown' or 'json' Returns: Control details including id, name, type, formula, browserLink.

coda_get_doc_schema

Get the full schema of a Coda document: all tables with their columns, types, and formulas in a single call. Equivalent to running coda_list_tables + coda_list_columns for every table at once. Especially useful to understand table structure before writing data or debugging formulas. Args: - doc_

coda_resolve_uri

Parse a coda:// URI (returned by the official Coda MCP) and extract the raw IDs usable with this server. Supports URIs like: - coda://docs/{docId} - coda://docs/{docId}/pages/{pageId} - coda://docs/{docId}/tables/{tableId} - coda://docs/{docId}/tables/{tableId}/columns/{columnId} - coda:/

coda_whoami

Retrieve information about the currently authenticated Coda user. Useful to verify which account is active and confirm the API token is valid. Args: - response_format: 'markdown' or 'json' Returns: User name, email (loginId), and account type.

// known CVEs in dependencies12 high12 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.6.1GHSA-8r9q-7v3j-jr4g

Anthropic's MCP TypeScript SDK has a ReDoS vulnerability

high@modelcontextprotocol/sdk@1.6.1GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highaxios@1.7.9GHSA-35jp-ww65-95wh

axios Vulnerable to Full Man-in-the-Middle via Prototype Pollution Gadget in `config.proxy`

highaxios@1.7.9GHSA-3g43-6gmg-66jw

axios Vulnerable to Credential Theft and Response Hijacking via Prototype Pollution Gadget in Config Merge

highaxios@1.7.9GHSA-43fc-jf86-j433

Axios is Vulnerable to Denial of Service via __proto__ Key in mergeConfig

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
🔐 secretCODA_API_TOKENenv =VOTRE_TOKEN_ICI \
configHOST
🔐 secretMCP_ACCESS_TOKEN
configMODE
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployPORT
// quality suggestions

Tool test coverage

Only 0/35 tools referenced in tests (0%)

Write tests that reference each tool by name so every tool has at least one test.

Production dependencies are patched

0 critical, 12 high severity in production deps — @modelcontextprotocol/sdk@1.6.1 (high), @modelcontextprotocol/sdk@1.6.1 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 2 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/thierryvm/coda-mcp-server?variant=verified)](https://m8ven.ai/mcp/thierryvm/coda-mcp-server)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 82b144e56fa66ddbeca7100df60d5880ac1b4eff
code hash: aac8169fd6d784a604fe805ed2c6f736ccc6414ab5fb9682034fda7f3983751b
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client