So, I (along with my awesome team at Tiger Data) built an MCP server that auto-injects Postgres best practices into AI context to help. The biggest innovation: our get_prompt_template tool lets the LLM auto-discover the right guidance without slash commands. Ask "design a schema for IoT devices" and it automatically pulls our Postgres schema design and hypertable guides.
What's different from other MCP servers: Instead of thin API wrappers, I am teaching AI things like "Always index foreign key columns - Postgres won't do it for you" and "use TEXT not VARCHAR(255)". It includes versioned Postgres docs (15-17) with hybrid search, plus TimescaleDB-specific patterns.
Try it with our free service:
```
curl -fsSL https://cli.tigerdata.com | sh
tiger auth login
tiger mcp install
```
Works with Claude Desktop, Cursor, Windsurf, VS Code. Open source.
By the way: this approach might show how to implement Anthropic's new Agent Skills (previous discussion: https://news.ycombinator.com/item?id=45607117) entirely through MCP.