🎯

sanity-schema-manager

🎯Skill

from sanity-io/agent-toolkit

VibeIndex|
What it does

sanity-schema-manager skill from sanity-io/agent-toolkit

πŸ“¦

Part of

sanity-io/agent-toolkit(8 items)

sanity-schema-manager

Installation

npxRun with npx
npx sanity@latest mcp configure
Remote ServerConnect to remote MCP server
claude mcp add Sanity -t http https://mcp.sanity.io --scope user
Claude Desktop ConfigurationAdd this to your claude_desktop_config.json
{ "mcpServers": { "Sanity": { "type": "http", "url": "https://...
πŸ“– Extracted from docs: sanity-io/agent-toolkit
1Installs
74
-
Last UpdatedJan 27, 2026

Skill Details

SKILL.md

Overview

Sanity Agent Toolkit

Collection of resources to help AI agents build better with [Sanity](https://www.sanity.io). Supports Cursor, Claude Code, VS Code, Lovable, v0, and any other editor/agent compatible with MCP, [Agent Skills](https://agentskills.io), or .mdc rules.

---

Features

  • Agent rules: 20+ portable .mdc files covering schema design, GROQ, Visual Editing, SEO, localization, migrations, and front-end framework integrations.
  • Agent skills: Comprehensive best practices skills for Sanity development, content modeling, SEO/AEO, and experimentation.
  • MCP server: Direct access to your Sanity projects (content, datasets, releases, schemas) and agent rules.
  • Claude Code plugin: Slash commands and MCP integration for Claude Code users.

---

Get started

Choose your path based on how you want agents to work with Sanity:

  1. MCP server β€” Give your agent always up-to-date rules and full access to your Sanity projects. No local files to maintain. Works with Cursor, VS Code, Claude Code, Lovable, v0, and other MCP-compatible clients.
  2. Agent skills β€” Install best practices skills for Sanity, content modeling, SEO/AEO, and experimentation. Works with Cursor, Claude Code, and any [Agent Skills](https://agentskills.io)-compatible agent.
  3. Claude Code plugin β€” Adds interactive skills and slash commands on top of MCP for guided workflows.
  4. Manual installation β€” Copy rules locally for offline use. You'll need to update them yourself.

Option 1: Install MCP server (recommended)

Give agents direct access to Sanity projects and always up-to-date agent rules via the MCP server.

#### Quick install via Sanity CLI

Run in terminal to detect and configure MCP for Cursor, Claude Code and VS Code automatically:

```bash

npx sanity@latest mcp configure

```

Uses your logged-in CLI user for authentication β€” no manual tokens or OAuth needed.

#### Client-specific instructions

Cursor

One-click install:

[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=Sanity&config=eyJ0eXBlIjoiaHR0cCIsInVybCI6Imh0dHBzOi8vbWNwLnNhbml0eS5pbyJ9)

Or manually: Open Command Palette (Cmd+Shift+P / Ctrl+Shift+P) β†’ View: Open MCP Settings β†’ + New MCP Server β†’ add to mcp.json:

```json

{

"mcpServers": {

"Sanity": {

"type": "http",

"url": "https://mcp.sanity.io"

}

}

}

```

Claude Code

Run in terminal. Authenticate with OAuth on next launch:

```bash

claude mcp add Sanity -t http https://mcp.sanity.io --scope user

```

VS Code

Open Command Palette (Cmd+Shift+P / Ctrl+Shift+P) β†’ MCP: Open User Configuration β†’ add:

```json

{

"servers": {

"Sanity": {

"type": "http",

"url": "https://mcp.sanity.io"

}

}

}

```

Lovable

Settings β†’ Connectors β†’ Personal connectors β†’ New MCP server β†’ Enter Sanity as name and https://mcp.sanity.io as Server URL β†’ Add & authorize β†’ Authenticate with OAuth.

v0

In the prompt input field, click Prompt Tools β†’ MCPs β†’ Add New β†’ Select Sanity β†’ Authorize β†’ Authenticate with OAuth.

Replit

Go to [Integrations Page](https://replit.com/integrations) β†’ scroll to MCP Servers for Replit Agent β†’ Add MCP server β†’ Enter Sanity as name and https://mcp.sanity.io as Server URL β†’ Test & Save β†’ Authenticate with OAuth.

OpenCode