D
Drizzle
Inspect Drizzle ORM schemas and run migrations.
·No reviews yet
Share:
About
Auto-generated
Drizzle is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Drizzle.
- What is the Drizzle MCP and what can it do?
- The Drizzle MCP helps inspect Drizzle ORM schemas and run database migrations. It enables developers to manage Drizzle ORM projects through a standardized Model Context Protocol interface. This streamlines schema visualization and migration execution.
- How do I install the Drizzle MCP in an MCP client?
- Installation details depend on your specific MCP client (e.g., Claude Desktop, Cursor, or Cline). Generally, you'd add the Drizzle MCP via the client's integration or plugin management interface. Refer to your MCP client's documentation for exact steps.
- Does the Drizzle MCP require an API key or other credentials?
- No, the Drizzle MCP as described does not specify any authentication type. It operates with 'none' authentication, meaning no API keys, OAuth tokens, or other credentials are required to use its basic functionality.
- What are the primary capabilities of the Drizzle MCP?
- The Drizzle MCP's core capabilities include inspecting Drizzle ORM schemas and executing migrations. This directly supports database schema management and evolution within Drizzle ORM projects. Specific tools exposed are not listed, but these are the main functions.
- Is there a cost associated with using the Drizzle MCP?
- The Drizzle MCP itself is provided by the community and is likely open-source, implying no direct cost for the MCP component. However, costs for underlying Drizzle ORM usage or database services would depend on their respective licenses and providers. There is no listed cost for the MCP.
- What is a potential limitation or prerequisite for using the Drizzle MCP?
- A key prerequisite for using the Drizzle MCP is an existing Drizzle ORM project. It's designed to interact specifically with Drizzle ORM schemas and migration scripts. Without a Drizzle ORM setup, the MCP's functionality would be limited.
Install Drizzle
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"drizzle": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-drizzle"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"drizzle": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-drizzle"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"drizzle": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-drizzle"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.