mcp-csv-server
Enables an AI assistant to preview, query, aggregate, and convert CSV/TSV data safely with no API key.
README
mcp-csv-server
An MCP server that lets an AI assistant preview, query, aggregate, and convert CSV/TSV data — safely, with no API key.
Give Claude (or any MCP client) the ability to actually work with spreadsheets: filter rows, sum/average/group columns, and turn CSV into JSON — instead of eyeballing a pasted table and guessing. Pure TypeScript, dependency-light, and runnable with zero credentials, so a reviewer can try it in one command.
日本語の概要
AIアシスタント(Claude等)に「CSV/業務データを正しく扱う力」を与えるMCPサーバです。表をそのまま 読ませて推測させるのではなく、行の絞り込み・列の集計(合計/平均/最大最小)・グループ集計・JSON変換を ツールとして提供します。APIキー不要で動くので、その場で試せます。
- 壊れにくいCSVパーサ:引用符・エスケープ(
"")・引用符内のカンマ/改行に対応(素朴なsplit(',')が壊れる実データを正しく処理)。 - 型付きエラー+対処ヒント:
[UNKNOWN_COLUMN] Unknown column "x". Hint: Available columns: ...のように、AIにも人にも原因と対処が分かる。 - 責務分離:
csv/(パース・クエリの純粋ロジック)/tools/(MCPツール定義)/server.ts(薄い配線)。 - テスト:パーサ・クエリ・ツールを19本のユニットテストで検証(全エラー経路含む)。CI緑。
Tools
| Tool | What it does | Key inputs |
|---|---|---|
csv_preview |
Columns, total row count, and a sample | csv, delimiter?, limit? |
csv_query |
Filter / select / aggregate / group / limit | csv, where?, select?, aggregate?, groupBy?, limit? |
csv_to_json |
Convert CSV/TSV to JSON records | csv, delimiter?, limit? |
aggregate supports count, sum, avg, min, max; where ops are
eq, ne, gt, gte, lt, lte, contains (ANDed together). Numbers tolerate
thousands separators ("2,000" → 2000).
Install & run
git clone https://github.com/takuyahoritacromtech/mcp-csv-server.git
cd mcp-csv-server
npm install
npm run build
Use with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"csv": {
"command": "node",
"args": ["/absolute/path/to/mcp-csv-server/dist/index.js"]
}
}
}
Restart the client; the csv_preview, csv_query, and csv_to_json tools appear.
Quick smoke test (no client needed)
printf '%s\n' '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0"}}}' \
| node dist/index.js
# → {"result":{...,"serverInfo":{"name":"mcp-csv-server",...}},"jsonrpc":"2.0","id":1}
Example: "total sales by region"
Given a csv_query call with:
{ "csv": "region,amount\nEast,1000\nWest,2000\nEast,500",
"groupBy": "region",
"aggregate": { "fn": "sum", "column": "amount" } }
the tool returns:
{ "columns": ["region", "sum_amount"],
"rows": [{ "region": "East", "sum_amount": 1500 }, { "region": "West", "sum_amount": 2000 }],
"rowCount": 2 }
Design notes (the "why")
- A real CSV parser, not
split(',')— a small RFC 4180 state machine handles quoting, escaped quotes, and embedded delimiters/newlines. This is where naive tools silently corrupt data. - Pure core, thin MCP shell — all logic lives in
csv/andtools/as pure functions, so it is unit-tested without the protocol.server.tsonly maps tools to the SDK and convertsCsvErrorinto clean tool errors. - Typed errors with hints — every failure (
UNKNOWN_COLUMN,NON_NUMERIC_COLUMN,CSV_PARSE_ERROR, …) is actionable from the message alone. - Validated inputs — every tool input is a Zod schema, so malformed calls are rejected before any work happens.
Testing
npm run check # typecheck + lint + test
19 unit tests cover CSV parsing (quoting, TSV, CRLF, ragged rows, empty, unterminated quotes), the query engine (filter/select/aggregate/group/limit + every error code), and the three tools.
License
MIT © Takuya Horita
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。