PostgreSQL schema intelligence MCP server with offline linting, migration safety, query validation for AI coding assistants.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"dryrun": {
"command": "cargo",
"args": [
"run",
"--",
"dryrun"
]
}
}
}
Run in terminal:
claude mcp add dryrun cargo run -- dryrun
Add to .cursor/mcp.json:
{
"mcpServers": {
"dryrun": {
"command": "cargo",
"args": [
"run",
"--",
"dryrun"
]
}
}
}