$ recombobulate _
home / tips / add-mcp-servers-to-give-claude-superpowers
0

Add MCP Servers to Give Claude Superpowers

bagwaa @bagwaa · Mar 25, 2026 · MCP Servers
add-mcp-servers-to-give-claude-superpowers

Out of the box, Claude Code can read files and run commands. MCP servers extend it with entirely new capabilities — databases, APIs, browser automation, and more.

// .claude/settings.json
{
  "mcpServers": {
    "postgres": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-postgres"],
      "env": {
        "DATABASE_URL": "postgresql://localhost:5432/mydb"
      }
    }
  }
}

With that configured, Claude can now query your database directly during conversations — no copy-pasting SQL results back and forth.

Some popular MCP servers worth setting up:

  • Postgres/MySQL — query databases, inspect schemas, run migrations
  • GitHub — create PRs, review issues, manage repos without leaving the terminal
  • Brave Search — let Claude search the web for documentation and examples
  • Filesystem — give Claude controlled access to directories outside the project

You can configure them globally (~/.claude/settings.json) or per-project (.claude/settings.json). Per-project is usually better since different codebases need different tools.

# Check which MCP servers are active
claude /mcp

MCP servers are inherited by subagents too, so any parallel workers you spin up get the same capabilities.

MCP servers turn Claude from a code assistant into a fully connected development environment.

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Build a Custom MCP Server to Expose Your Internal APIs

Scaffold a custom MCP server with Claude to give it direct access to your internal APIs, dashboards, and microservices.

bagwaa @bagwaa · 3 hours ago
0
Lock Down MCP Servers with --strict-mcp-config

Use --strict-mcp-config to restrict Claude Code to only the MCP servers you explicitly provide, ignoring all other sources.

bagwaa @bagwaa · 4 hours ago
0
Use the /mcp Command to Inspect Your MCP Servers

When an MCP server misbehaves, /mcp gives you a live view of every connected server, its status, and the tools it's exposing — right inside your session.

bagwaa @bagwaa · 6 hours ago