Sanity MCP Server

Developmentstdiohttp-streaming
代码仓库

Sanity's official MCP server that connects structured content to AI agents. Provides tools to run GROQ queries, read and write documents, explore and deploy schemas, manage content releases, and generate images, all with full schema context. Available as a hosted remote server at mcp.sanity.io and works with MCP-compatible clients like Cursor, Claude Code, and VS Code.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "sanity": {
      "command": "npx",
      "args": [],
      "env": {
        "SANITY_PROJECT_ID": "<YOUR_SANITY_PROJECT_ID>",
        "SANITY_DATASET": "<YOUR_SANITY_DATASET>",
        "SANITY_API_TOKEN": "<YOUR_SANITY_API_TOKEN>"
      }
    }
  }
}

工具 (3)

query_documents

Run a GROQ query to fetch documents from the Sanity dataset.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "GROQ query string"
    }
  }
}

create_document

Create a new document in the Sanity dataset.

{
  "type": "object",
  "required": [
    "document"
  ],
  "properties": {
    "document": {
      "type": "object",
      "description": "Document body including its _type"
    }
  }
}

get_schema

Retrieve the schema types configured for the Sanity project.

{
  "type": "object",
  "properties": {}
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Sanity (@sanity-io)
代码仓库
https://github.com/sanity-io/sanity-mcp-server
星标
0
最后更新
2026年7月12日