.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/sanity-io/agent-toolkit
home/mcp-servers/sanity-io/agent-toolkit
sanity-io avatar

agent-toolkit

bysanity-io· 1 MCP server

Stars

169

Forks

24

Category

AI Agents & MCP

View on GitHub

TL;DR

Collection of resources to help AI agents build better with Sanity.

How to install agent-toolkit?

sanity-io/agent-toolkit
$git clone https://github.com/sanity-io/agent-toolkit

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install agent-toolkit by running `git clone https://github.com/sanity-io/agent-toolkit`, then use it for the current task and follow its documentation at https://github.com/sanity-io/agent-toolkit.

Files · 1

View on GitHub
README.md
1<p align="center">
2 <a href="https://sanity.io">
3 <img src="https://cdn.sanity.io/images/3do82whm/next/d6cf401d52c33b7a5a354a14ab7de94dea2f0c02-192x192.svg" />
4 </a>
5 <h1 align="center">Sanity Agent Toolkit</h1>
6</p>
7 
8Collection of resources to help AI agents build better with [Sanity](https://www.sanity.io). Supports Cursor, Claude Code, Codex, VS Code, Lovable, v0, Replit, OpenCode, and any other editor/agent compatible with MCP or [Agent Skills](https://agentskills.io).
9 
10---
11 
12## Features
13 
14- **MCP server:** Direct access to your Sanity projects (content, datasets, releases, schemas) and agent rules.
15- **Agent skills:** Comprehensive best practices skills for Sanity development, content modeling, SEO/AEO, and experimentation. Includes 21 integration/topic guides and 26 focused best-practice rules.
16- **Claude Code plugin:** MCP server, agent skills, and slash commands for Claude Code users. Available on the [official Anthropic plugin marketplace](https://claude.com/plugins/sanity).
17- **Cursor plugin:** MCP server, agent skills, and commands on the [Cursor Marketplace](https://cursor.com/marketplace/sanity).
18- **Codex plugin:** MCP server and agent skills for [OpenAI Codex](https://developers.openai.com/codex) users.
19 
20---
21 
22## Get started
23 
24Choose your path based on how you want agents to work with Sanity:
25 
261. **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, Replit, OpenCode, and other MCP-compatible clients.
272. **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.
283. **Plugin** — Install the Sanity plugin for Cursor or Claude Code. Bundles MCP server, agent skills, and commands.
294. **Manual installation** — Copy the skill references locally for offline use. You'll need to update them yourself.
30 
31### Option 1: Install MCP server (recommended)
32 
33Give agents direct access to Sanity projects and always up-to-date agent rules via the MCP server.
34 
35#### Quick install via Sanity CLI
36 
37Run in terminal to detect and configure MCP for Cursor, Claude Code and VS Code automatically:
38 
39```bash
40npx sanity@latest mcp configure
41```
42 
43Uses your logged-in CLI user for authentication — no manual tokens or OAuth needed.
44 
45#### Client-specific instructions
46 
47<details>
48<summary><strong>Cursor</strong></summary>
49 
50One-click install:<br>
51[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=Sanity&config=eyJ0eXBlIjoiaHR0cCIsInVybCI6Imh0dHBzOi8vbWNwLnNhbml0eS5pbyJ9)
52 
53Or manually: Open **Command Palette** (`Cmd+Shift+P` / `Ctrl+Shift+P`) → **View: Open MCP Settings** → **+ New MCP Server** → add to `mcp.json`:
54```json
55{
56 "mcpServers": {
57 "Sanity": {
58 "type": "http",
59 "url": "https://mcp.sanity.io"
60 }
61 }
62}
63```
64</details>
65 
66<details>
67<summary><strong>Claude Code</strong></summary>
68 
69Run in terminal. Authenticate with OAuth on next launch:
70```bash
71claude mcp add Sanity -t http https://mcp.sanity.io --scope user
72```
73</details>
74 
75<details>
76<summary><strong>Codex</strong></summary>
77 
78Run in terminal. Authenticate with OAuth on next launch:
79```bash
80codex mcp add Sanity --url https://mcp.sanity.io
81```
82 
83Or manually add to `~/.codex/config.toml`:
84```toml
85[mcp_servers.Sanity]
86url = "https://mcp.sanity.io"
87```
88</details>
89 
90<details>
91<summary><strong>VS Code</strong></summary>
92 
93Open **Command Palette** (`Cmd+Shift+P` / `Ctrl+Shift+P`) → **MCP: Open User Configuration** → add:
94```json
95{
96 "servers": {
97 "Sanity": {
98 "type": "http",
99 "url": "https://mcp.sanity.io"
100 }
101 }
102}
103```
104</details>
105 
106<details>
107<summary><strong>Lovable</strong></summary>
108 
109Sanity is available as a prebuilt chat connector in Lovable:
110 
1111. Open **Connectors** → **Chat connectors**
1122. Select **Sanity**
1133. Click **Connect** and sign in to authorize your Sanity account
114 
115In your next prompt, reference your Sanity project or ask the agent to read your schema.
116 
117See the [Lovable MCP documentation](https://docs.lovable.dev/integrations/mcp-servers) or [Sanity + Lovable guide](https://lovable.dev/connect/sanity) for more details.
118</details>
119 
120<details>
121<summary><strong>v0</strong></summary>
122 
123In the prompt input field, click **Prompt Tools** → **MCPs** → **Add New** → Select **Sanity** → **Authorize** → Authenticate with OAuth.
124</details>
125 
126<details>
127<summary><strong>Replit</strong></summary>
128 
129Go 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.
130</details>
131 
132<details>
133<summary><strong>OpenCode</strong></summary>
134 
135Add to your `opencode.json`:
136```json
137{
138 "$schema": "https://opencode.ai/config.json",
139 "mcp": {
140 "sanity": {
141 "type": "remote",

Preview

sanity-io/agent-toolkitsanity-io/agent-toolkit
Reposanity-io/agent-toolkit
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPagent-rulesai-rules

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k