From a3f990838bb22ca6bdf0478fee9a21f0295bf7da Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:20:48 +0000 Subject: [PATCH] Add Sanity MCP server definition (Remote HTTP) Official Sanity remote MCP server for CMS content management. Query documents with GROQ, manage content and schemas via https://mcp.sanity.io with OAuth. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/io.sanity-mcp.json | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/io.sanity-mcp.json diff --git a/servers/io.sanity-mcp.json b/servers/io.sanity-mcp.json new file mode 100644 index 0000000..0e1f134 --- /dev/null +++ b/servers/io.sanity-mcp.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "io.sanity-mcp", + "name": "Sanity", + "alias": "sanity", + "description": "Manage Sanity CMS content, schemas, and datasets. Query documents with GROQ, create and update content through the hosted MCP server.", + "icon": "https://avatars.githubusercontent.com/u/17177659?v=4", + "schema_version": "2.1", + "categories": ["developer-tools", "productivity"], + "tags": ["sanity", "cms", "headless-cms", "content", "groq"], + + "transport": { + "type": "http", + "url": "https://mcp.sanity.io", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connects via OAuth. Your MCP host will initiate the Sanity OAuth flow to authorize access to your project." + }, + + "contributor": { + "name": "Sanity", + "github": "sanity-io", + "url": "https://www.sanity.io" + }, + + "links": { + "repository": "https://github.com/sanity-io/sanity-mcp-server", + "homepage": "https://www.sanity.io", + "documentation": "https://www.sanity.io/docs" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}