Extend your agent with Model Context Protocol servers for databases, APIs, filesystems, and more.
Model Context Protocol (MCP) is an open standard developed by Anthropic that lets AI agents connect to external tools, databases, and services through a unified interface.
Instead of hardcoding integrations, MCP servers expose resources (files, databases, API endpoints) and tools (functions your agent can call) in a standard way. Your agent uses these automatically.
MCP servers are language-agnostic (Python, TypeScript, Go, etc.) and work across any MCP-compatible AI system. Pinchr natively supports MCP out of the box.
When you add an MCP server to Pinchr, your agent gains access to:
Files, databases, documents — things your agent can read and search through.
Functions your agent can invoke: run queries, create records, call APIs, trigger webhooks.
github_search_issues(label:"P0", state:"open")Everything happens automatically. You don't manually configure tools — your agent figures it out.
Pinchr makes it easy to add MCP servers. Go to Settings → MCP Serversand choose from presets or add a custom server.
Your agent helps you configure MCP servers. Just tell it what you want to connect: "Connect my GitHub repos" or "Add Supabase access" — and it handles the rest.
Once added, the server runs in the background. Your agent automatically discovers and uses available tools and resources.
Pinchr includes pre-configured MCP servers for common services:
Search repos, read code, create issues, manage PRs, run workflows. Full GitHub API access.
Query Postgres tables, insert/update records, run functions. Direct database access.
Read/write local files, search directories, watch for changes. Sandboxed to specific folders.
Read and update spreadsheets, run formulas, export data. Full Sheets API access.
Search emails, read threads, send messages, manage labels. Full Gmail integration.
Search pages, read databases, create/update content. Full workspace access.
Read channels, send messages, search history, manage threads. Full Slack API.
Manage S3 buckets, EC2 instances, Lambda functions, and more. Full AWS SDK access.
More presets coming regularly. You can also add custom MCP servers from the community.
You can connect any MCP-compatible server. In Settings → MCP Servers, click Add Custom Server and provide:
Pinchr launches the server automatically and maintains the connection. Your agent discovers available tools on startup.
Find community MCP servers at github.com/topics/mcp-server. Popular servers include Stripe, Twilio, Redis, and hundreds more.
MCP servers run in isolated processes. Pinchr manages access control:
Review custom MCP server code before adding. MCP servers can execute arbitrary code. Only use servers from trusted sources or your own infrastructure.
Developers can build custom MCP servers for internal tools, APIs, or databases. The MCP SDK supports Python, TypeScript, and Go:
Full documentation for building MCP servers: modelcontextprotocol.io