pypi wisegrid-mcpstdioMITupdated 13d ago
Read and write WiseGrid sheets from Claude, Cursor, or any MCP client. List sheets, page through rows, add and update records, and run reports — from inside a conversation.
wisegrid mcp 能做什么?
WiseGrid MCP
Read and write WiseGrid sheets from Claude, Cursor, or any MCP client. List sheets, page through rows, add and update records, and run reports — from inside a conversation.
Unlike the other servers in this family, these tools operate on your real data, so an API key is required.
Install
{
"mcpServers": {
"wisegrid": {
"command": "uvx",
"args": ["wisegrid-mcp"],
"env": {
"WISEGRID_API_KEY": "wg_live_xxx"
}
}
}
}
Or pip install wisegrid-mcp.
| Variable | Required | Purpose |
|---|---|---|
WISEGRID_API_KEY |
yes | Create one in WiseGrid under Settings |
WISEGRID_BASE_URL |
no | Override for self-hosted instances |
The key's scopes decide what these tools can reach. Grant read-only scopes if you only want the agent to look.
Tools
| Tool | What it does |
|---|---|
whoami |
The key's identity, scopes and rate limit — call this first when debugging |
list_sheets |
Sheets the key can see, cursor-paginated |
get_sheet |
Sheet + columns + first page of rows, in one call |
list_columns |
Column IDs, which cell dictionaries are keyed by |
list_rows |
Rows, cursor-paginated; each carries the version you need to update it |
add_rows |
Bulk insert, partial success, max 2000 |
update_row |
Update one row's changed cells, version-checked |
update_rows |
Bulk update, version-checked per row, max 2000 |
delete_row |
Delete a row and its subtree — requires confirm=True |
list_reports / get_report / run_report |
Reports and their rows |
Things that will bite you otherwise
Cells are keyed by column ID, not column name. {"101": "Acme Corp"}, not
{"Client": "Acme Corp"}. Call get_sheet or list_columns first.
Updates are version-checked. Every row carries a version; you pass the one
you read, and if the row changed in the meantime you get version_conflict
instead of a silent overwrite. That is a normal outcome to handle — re-read the
row, decide whether your change still applies, then retry. Blindly bumping the
version to force the write is how concurrent edits disappear.
update_row merges, update_rows overwrites. The single-row tool takes
only the cells you changed. The bulk tool replaces the row's cell set, so send
the full set you want the row to end up with.
delete_row takes the children too. It removes the row and its entire
subtree, it is not undoable through the API, and it requires confirm=True
for exactly that reason. Read the rows first.
Writes are idempotent. Each carries an Idempotency-Key, so a retry after a
timeout cannot double-apply. Rate limits are honoured via Retry-After.
Development
git clone https://github.com/RyanKramer/wisegrid-mcp
cd wisegrid-mcp
pip install -e .
WISEGRID_API_KEY=wg_live_xxx wisegrid-mcp
About
Built by WiseGrid. Full REST API reference at wisegrid.co/docs/api.
MIT licensed.
安装
把 wisegrid mcp 添加到你的客户端。选择你正在使用的那个。
claude mcp add wisegrid-mcp -- uvx wisegrid-mcpcodex mcp add wisegrid-mcp -- uvx wisegrid-mcpamp mcp add wisegrid-mcp -- uvx wisegrid-mcp{
"mcpServers": {
"wisegrid-mcp": {
"command": "uvx",
"args": [
"wisegrid-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"wisegrid-mcp": {
"command": "uvx",
"args": [
"wisegrid-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"wisegrid-mcp","command":"uvx","args":["wisegrid-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"wisegrid-mcp": {
"command": "uvx",
"args": [
"wisegrid-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"wisegrid-mcp": {
"command": "uvx",
"args": [
"wisegrid-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"wisegrid-mcp": {
"command": "uvx",
"args": [
"wisegrid-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"wisegrid-mcp": {
"type": "local",
"command": "uvx",
"args": [
"wisegrid-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"wisegrid-mcp": {
"command": {
"path": "uvx",
"args": [
"wisegrid-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx wisegrid-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 个工具
wisegrid mcp 向已连接的智能体提供 8 个工具。
- list_sheets
- Sheets the key can see, cursor-paginated
- get_sheet
- Sheet + columns + first page of rows, in one call
- list_columns
- Column IDs, which cell dictionaries are keyed by
- list_rows
- Rows, cursor-paginated; each carries the `version` you need to update it
- add_rows
- Bulk insert, partial success, max 2000
- update_row
- Update one row's changed cells, version-checked
- update_rows
- Bulk update, version-checked per row, max 2000
- delete_row
- Delete a row and its subtree — requires `confirm=True`
评分
72 / 100
良好
- 文档22/25
- 维护19/25
- 可信度13/20
- 能力6/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.1.0最新 | 2026年8月27日 |