ServerShowcase
Discover specialized MCP servers for your AI workflows.
shadcn-svelte-mcp
Mastra MCP server and tooling that provides real-time access to shadcn-svelte component documentation and developer utilities using web scraping.
Key Capabilities
Real-time web scraping from shadcn-svelte.com
Bits UI API documentation access
Lucide Svelte icon search (1600+ icons)
Fuzzy search with typo tolerance
Support for HTTP and SSE transports
Example Usage
Query
"Show me how to install the shadcn-svelte button component"
Query
"List all available shadcn-svelte components"
Query
"Search for date picker components in shadcn-svelte"
Query
"What are the API details for the Button component?"
Query
"Search for Lucide icons related to "user profile""
shadcn-svelte-list
List all available shadcn-svelte components, blocks, charts, and documentation sections.
shadcn-svelte-get
Retrieve detailed content, metadata, and code blocks for a specific component or doc.
shadcn-svelte-icons
Search and browse ~1,600 Lucide Svelte icons with smart filtering.
shadcn-svelte-search
Fuzzy search across the entire shadcn-svelte ecosystem with typo tolerance.
bits-ui-get
Access underlying Bits UI API documentation with AI-optimized content.
install-component
Step-by-step guide to install a specific shadcn-svelte component.
setup-theming
Guide to set up custom theming and CSS variables.
cli-usage
Comprehensive guide for using shadcn-svelte CLI commands.
project-init
Initialize a new shadcn-svelte project from scratch.
Global Transport
Default delivery mechanism for server connections.
Transport Mode for Cursor
Add to Cursor Settings:
{
"shadcn-svelte-mcp": {
"type": "sse",
"url": "https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/sse"
}
}How to Use MCP in Cursor
What is MCP?
Model Context Protocol (MCP) is an open protocol that allows you to provide custom tools to agentic LLMs in Cursor's Composer feature.
Installation Steps
Open Settings
Navigate to Cursor Settings > Features > MCP and click the + Add New MCP Server button.
Configure Server
Select the transport type (sse or stdio) and enter the URL or Command provided above.
Using Tools in Composer
-
Tool Availability
After adding, it will appear in your server list. Click refresh to populate tools.
-
Automatic Usage
The Composer Agent uses MCP tools automatically. You can also explicitly prompt tool usage by name.
Important Notes
- ▪ MCP tools may not work with all models.
- ▪ MCP tools are only available to the Agent in Composer.
- ▪ For servers requiring environment variables, create a wrapper script.
Command Palette
Run MCP: Add Server and paste:
https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp
mcp.json
Add to your .vscode/mcp.json:
"shadcn-svelte-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp"
]
}Alternative Format
Alternative configuration format for VS Code MCP extensions:
"shadcn-svelte-mcp": {
"url": "https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp",
"type": "http"
}Gemini Config
Add to your gemini_config.json:
{
"mcpServers": {
"shadcn-svelte-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp"
]
}
}
}Codex CLI
Run in your terminal:
codex mcp add shadcn-svelte-mcp --url https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"shadcn-svelte-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp"
]
}
}
}Claude Code (CLI)
Run in terminal:
claude mcp add --transport stdio shadcn-svelte-mcp https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp
Windsurf Config
{
"mcpServers": {
"shadcn-svelte-mcp": {
"url": "https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp",
"transport": "stdio"
}
}
}Zed Settings
Add to settings.json:
{
"context_servers": {
"shadcn-svelte-mcp": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp"
],
"env": {}
}
}
}Direct CLI Usage
Connect proxy or debug directly:
npx -y mcp-remote https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp
CLI Clients
Run in terminal:
codex mcp add shadcn-svelte-mcp --url https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp
Add to gemini_config.json:
{
"mcpServers": {
"shadcn-svelte-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp"
]
}
}
}Add to config.json:
{
"mcp": {
"shadcn-svelte-mcp": {
"type": "remote",
"url": "https://shadcn-svelte.mastra.cloud/api/mcp/shadcn/mcp",
"enabled": true
}
}
}tauri-docs
Mastra MCP server providing access to Tauri documentation from tauri.app with advanced caching and search.
Key Capabilities
Real-time fetching from tauri.app
Advanced LRU caching
Clean HTML output
Guided prompts for common workflows
Example Usage
Query
"How do I set up a new Tauri project?"
Query
"Search Tauri docs for window customization"
Query
"How to use the Tauri HTTP client?"
list-sections
List all available documentation sections and their use cases.
get-page
Retrieve the content of a specific documentation page.
search
Search the Tauri documentation for specific topics.
get-plugin
Get detailed information about a specific Tauri plugin.
Global Transport
Default delivery mechanism for server connections.
Transport Mode for Cursor
Add to Cursor Settings:
{
"tauri-docs": {
"type": "sse",
"url": "https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/sse"
}
}How to Use MCP in Cursor
What is MCP?
Model Context Protocol (MCP) is an open protocol that allows you to provide custom tools to agentic LLMs in Cursor's Composer feature.
Installation Steps
Open Settings
Navigate to Cursor Settings > Features > MCP and click the + Add New MCP Server button.
Configure Server
Select the transport type (sse or stdio) and enter the URL or Command provided above.
Using Tools in Composer
-
Tool Availability
After adding, it will appear in your server list. Click refresh to populate tools.
-
Automatic Usage
The Composer Agent uses MCP tools automatically. You can also explicitly prompt tool usage by name.
Important Notes
- ▪ MCP tools may not work with all models.
- ▪ MCP tools are only available to the Agent in Composer.
- ▪ For servers requiring environment variables, create a wrapper script.
Command Palette
Run MCP: Add Server and paste:
https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp
mcp.json
Add to your .vscode/mcp.json:
"tauri-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp"
]
}Alternative Format
Alternative configuration format for VS Code MCP extensions:
"tauri-docs": {
"url": "https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp",
"type": "http"
}Gemini Config
Add to your gemini_config.json:
{
"mcpServers": {
"tauri-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp"
]
}
}
}Codex CLI
Run in your terminal:
codex mcp add tauri-docs --url https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"tauri-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp"
]
}
}
}Claude Code (CLI)
Run in terminal:
claude mcp add --transport stdio tauri-docs https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp
Windsurf Config
{
"mcpServers": {
"tauri-docs": {
"url": "https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp",
"transport": "stdio"
}
}
}Zed Settings
Add to settings.json:
{
"context_servers": {
"tauri-docs": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp"
],
"env": {}
}
}
}Direct CLI Usage
Connect proxy or debug directly:
npx -y mcp-remote https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp
CLI Clients
Run in terminal:
codex mcp add tauri-docs --url https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp
Add to gemini_config.json:
{
"mcpServers": {
"tauri-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp"
]
}
}
}Add to config.json:
{
"mcp": {
"tauri-docs": {
"type": "remote",
"url": "https://tauri-docs.mastra.cloud/api/mcp/tauri-docs-mcp/mcp",
"enabled": true
}
}
}rust-docs
Mastra MCP server for searching and retrieving official Rust documentation.
Key Capabilities
Official Rust documentation search
Standard library API reference
Crate documentation support
Example Usage
Query
"Search Rust docs for Option enum"
Query
"How to use Mutex in Rust?"
Query
"Search for Vec::with_capacity examples"
search-crates
Search for Rust crates on crates.io.
get-crate-overview
Get overview information for a specific Rust crate.
get-item-docs
Retrieve documentation for specific Rust items (functions, structs, etc.).
list-modules
List all modules in a Rust crate.
Global Transport
Default delivery mechanism for server connections.
Transport Mode for Cursor
Add to Cursor Settings:
{
"rust-docs": {
"type": "sse",
"url": "https://rust-docs.mastra.cloud/api/mcp/rust-docs/sse"
}
}How to Use MCP in Cursor
What is MCP?
Model Context Protocol (MCP) is an open protocol that allows you to provide custom tools to agentic LLMs in Cursor's Composer feature.
Installation Steps
Open Settings
Navigate to Cursor Settings > Features > MCP and click the + Add New MCP Server button.
Configure Server
Select the transport type (sse or stdio) and enter the URL or Command provided above.
Using Tools in Composer
-
Tool Availability
After adding, it will appear in your server list. Click refresh to populate tools.
-
Automatic Usage
The Composer Agent uses MCP tools automatically. You can also explicitly prompt tool usage by name.
Important Notes
- ▪ MCP tools may not work with all models.
- ▪ MCP tools are only available to the Agent in Composer.
- ▪ For servers requiring environment variables, create a wrapper script.
Command Palette
Run MCP: Add Server and paste:
https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp
mcp.json
Add to your .vscode/mcp.json:
"rust-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp"
]
}Alternative Format
Alternative configuration format for VS Code MCP extensions:
"rust-docs": {
"url": "https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp",
"type": "http"
}Gemini Config
Add to your gemini_config.json:
{
"mcpServers": {
"rust-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp"
]
}
}
}Codex CLI
Run in your terminal:
codex mcp add rust-docs --url https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"rust-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp"
]
}
}
}Claude Code (CLI)
Run in terminal:
claude mcp add --transport stdio rust-docs https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp
Windsurf Config
{
"mcpServers": {
"rust-docs": {
"url": "https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp",
"transport": "stdio"
}
}
}Zed Settings
Add to settings.json:
{
"context_servers": {
"rust-docs": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp"
],
"env": {}
}
}
}Direct CLI Usage
Connect proxy or debug directly:
npx -y mcp-remote https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp
CLI Clients
Run in terminal:
codex mcp add rust-docs --url https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp
Add to gemini_config.json:
{
"mcpServers": {
"rust-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp"
]
}
}
}Add to config.json:
{
"mcp": {
"rust-docs": {
"type": "remote",
"url": "https://rust-docs.mastra.cloud/api/mcp/rust-docs/mcp",
"enabled": true
}
}
}go-docs
Mastra MCP server for Go programming language documentation and package search.
Key Capabilities
Go package documentation search
Standard library reference
Function signature lookup
Example Usage
Query
"Search Go docs for net/http package"
Query
"How to use context in Go?"
Query
"Find Go examples for json.Marshal"
go-docs-search
Search Go packages and documentation.
go-docs-get
Retrieve Go package or function details.
Global Transport
Default delivery mechanism for server connections.
Transport Mode for Cursor
Add to Cursor Settings:
{
"go-docs": {
"type": "sse",
"url": "https://go-docs.mastra.cloud/api/mcp/go-docs/sse"
}
}How to Use MCP in Cursor
What is MCP?
Model Context Protocol (MCP) is an open protocol that allows you to provide custom tools to agentic LLMs in Cursor's Composer feature.
Installation Steps
Open Settings
Navigate to Cursor Settings > Features > MCP and click the + Add New MCP Server button.
Configure Server
Select the transport type (sse or stdio) and enter the URL or Command provided above.
Using Tools in Composer
-
Tool Availability
After adding, it will appear in your server list. Click refresh to populate tools.
-
Automatic Usage
The Composer Agent uses MCP tools automatically. You can also explicitly prompt tool usage by name.
Important Notes
- ▪ MCP tools may not work with all models.
- ▪ MCP tools are only available to the Agent in Composer.
- ▪ For servers requiring environment variables, create a wrapper script.
Command Palette
Run MCP: Add Server and paste:
https://go-docs.mastra.cloud/api/mcp/go-docs/mcp
mcp.json
Add to your .vscode/mcp.json:
"go-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://go-docs.mastra.cloud/api/mcp/go-docs/mcp"
]
}Alternative Format
Alternative configuration format for VS Code MCP extensions:
"go-docs": {
"url": "https://go-docs.mastra.cloud/api/mcp/go-docs/mcp",
"type": "http"
}Gemini Config
Add to your gemini_config.json:
{
"mcpServers": {
"go-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://go-docs.mastra.cloud/api/mcp/go-docs/mcp"
]
}
}
}Codex CLI
Run in your terminal:
codex mcp add go-docs --url https://go-docs.mastra.cloud/api/mcp/go-docs/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"go-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://go-docs.mastra.cloud/api/mcp/go-docs/mcp"
]
}
}
}Claude Code (CLI)
Run in terminal:
claude mcp add --transport stdio go-docs https://go-docs.mastra.cloud/api/mcp/go-docs/mcp
Windsurf Config
{
"mcpServers": {
"go-docs": {
"url": "https://go-docs.mastra.cloud/api/mcp/go-docs/mcp",
"transport": "stdio"
}
}
}Zed Settings
Add to settings.json:
{
"context_servers": {
"go-docs": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://go-docs.mastra.cloud/api/mcp/go-docs/mcp"
],
"env": {}
}
}
}Direct CLI Usage
Connect proxy or debug directly:
npx -y mcp-remote https://go-docs.mastra.cloud/api/mcp/go-docs/mcp
CLI Clients
Run in terminal:
codex mcp add go-docs --url https://go-docs.mastra.cloud/api/mcp/go-docs/mcp
Add to gemini_config.json:
{
"mcpServers": {
"go-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://go-docs.mastra.cloud/api/mcp/go-docs/mcp"
]
}
}
}Add to config.json:
{
"mcp": {
"go-docs": {
"type": "remote",
"url": "https://go-docs.mastra.cloud/api/mcp/go-docs/mcp",
"enabled": true
}
}
}layerchart-docs
Mastra MCP server for searching and retrieving LayerChart documentation (Svelte charting library).
Key Capabilities
LayerChart component documentation search
Chart example retrieval
API reference for visualization components
Example Usage
Query
"How to create a BarChart with LayerChart?"
Query
"Search LayerChart docs for PieChart examples"
Query
"What are the props for the AreaChart component?"
list-docs
List all available documentation pages and component routes.
get-doc
Get the documentation content for a specific route (text and code from GitHub).
get-source
Fetch raw source code for a documentation page or component implementation.
search-docs
Search for specific documentation and components within the LayerChart repository.
Global Transport
Default delivery mechanism for server connections.
Transport Mode for Cursor
Add to Cursor Settings:
{
"layerchart-docs": {
"type": "sse",
"url": "https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/sse"
}
}How to Use MCP in Cursor
What is MCP?
Model Context Protocol (MCP) is an open protocol that allows you to provide custom tools to agentic LLMs in Cursor's Composer feature.
Installation Steps
Open Settings
Navigate to Cursor Settings > Features > MCP and click the + Add New MCP Server button.
Configure Server
Select the transport type (sse or stdio) and enter the URL or Command provided above.
Using Tools in Composer
-
Tool Availability
After adding, it will appear in your server list. Click refresh to populate tools.
-
Automatic Usage
The Composer Agent uses MCP tools automatically. You can also explicitly prompt tool usage by name.
Important Notes
- ▪ MCP tools may not work with all models.
- ▪ MCP tools are only available to the Agent in Composer.
- ▪ For servers requiring environment variables, create a wrapper script.
Command Palette
Run MCP: Add Server and paste:
https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp
mcp.json
Add to your .vscode/mcp.json:
"layerchart-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp"
]
}Alternative Format
Alternative configuration format for VS Code MCP extensions:
"layerchart-docs": {
"url": "https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp",
"type": "http"
}Gemini Config
Add to your gemini_config.json:
{
"mcpServers": {
"layerchart-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp"
]
}
}
}Codex CLI
Run in your terminal:
codex mcp add layerchart-docs --url https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"layerchart-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp"
]
}
}
}Claude Code (CLI)
Run in terminal:
claude mcp add --transport stdio layerchart-docs https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp
Windsurf Config
{
"mcpServers": {
"layerchart-docs": {
"url": "https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp",
"transport": "stdio"
}
}
}Zed Settings
Add to settings.json:
{
"context_servers": {
"layerchart-docs": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp"
],
"env": {}
}
}
}Direct CLI Usage
Connect proxy or debug directly:
npx -y mcp-remote https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp
CLI Clients
Run in terminal:
codex mcp add layerchart-docs --url https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp
Add to gemini_config.json:
{
"mcpServers": {
"layerchart-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp"
]
}
}
}Add to config.json:
{
"mcp": {
"layerchart-docs": {
"type": "remote",
"url": "https://layerchart-docs.mastra.cloud/api/mcp/layerchart-docs/mcp",
"enabled": true
}
}
}drizzle-docs-mcp
Mastra MCP server and tooling that provides real-time access to all Drizzle ORM documentation pages with fuzzy search, pre-caching, and flexible content retrieval.
Key Capabilities
Production deployment on Mastra Cloud
Three main MCP tools for comprehensive Drizzle ORM support
Smart Fuzzy Search: Powered by fuse.js, allowing for typos and partial matches.
Pre-caching: Automatically fetches and indexes all 97 documentation pages at startup.
Flexible Content Retrieval: Fetch full pages or specific sections in Markdown, JSON, or Plaintext.
Support for all major AI code editors
HTTP and SSE transport protocols
Real-time web scraping from orm.drizzle.team
Example Usage
Query
"Show me how to setup a Postgres schema in Drizzle"
Query
"List all Drizzle docs topics"
Query
"Search for relational query examples in Drizzle"
Query
"How do I handle migrations with Drizzle Kit?"
Query
"Compare Drizzle select vs relational query builders"
list_topics
Discover all 97 available Drizzle ORM documentation pages. Use this to understand the structure or find specific topic slugs.
fetch_page
Fetch and convert documentation pages to Markdown with optional filtering (slug, format, sections, maxLength).
search_docs
Search the documentation using intelligent fuzzy matching (query, limit).
Global Transport
Default delivery mechanism for server connections.
Transport Mode for Cursor
Add to Cursor Settings:
{
"drizzle-docs-mcp": {
"type": "sse",
"url": "https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/sse"
}
}How to Use MCP in Cursor
What is MCP?
Model Context Protocol (MCP) is an open protocol that allows you to provide custom tools to agentic LLMs in Cursor's Composer feature.
Installation Steps
Open Settings
Navigate to Cursor Settings > Features > MCP and click the + Add New MCP Server button.
Configure Server
Select the transport type (sse or stdio) and enter the URL or Command provided above.
Using Tools in Composer
-
Tool Availability
After adding, it will appear in your server list. Click refresh to populate tools.
-
Automatic Usage
The Composer Agent uses MCP tools automatically. You can also explicitly prompt tool usage by name.
Important Notes
- ▪ MCP tools may not work with all models.
- ▪ MCP tools are only available to the Agent in Composer.
- ▪ For servers requiring environment variables, create a wrapper script.
Command Palette
Run MCP: Add Server and paste:
https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp
mcp.json
Add to your .vscode/mcp.json:
"drizzle-docs-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp"
]
}Alternative Format
Alternative configuration format for VS Code MCP extensions:
"drizzle-docs-mcp": {
"url": "https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp",
"type": "http"
}Gemini Config
Add to your gemini_config.json:
{
"mcpServers": {
"drizzle-docs-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp"
]
}
}
}Codex CLI
Run in your terminal:
codex mcp add drizzle-docs-mcp --url https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"drizzle-docs-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp"
]
}
}
}Claude Code (CLI)
Run in terminal:
claude mcp add --transport stdio drizzle-docs-mcp https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp
Windsurf Config
{
"mcpServers": {
"drizzle-docs-mcp": {
"url": "https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp",
"transport": "stdio"
}
}
}Zed Settings
Add to settings.json:
{
"context_servers": {
"drizzle-docs-mcp": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp"
],
"env": {}
}
}
}Direct CLI Usage
Connect proxy or debug directly:
npx -y mcp-remote https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp
CLI Clients
Run in terminal:
codex mcp add drizzle-docs-mcp --url https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp
Add to gemini_config.json:
{
"mcpServers": {
"drizzle-docs-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp"
]
}
}
}Add to config.json:
{
"mcp": {
"drizzle-docs-mcp": {
"type": "remote",
"url": "https://drizzle.mastra.cloud/api/mcp/drizzle-docs-mcp/mcp",
"enabled": true
}
}
}