Skip to main content

MCP Integration

Connect to Estuary's documentation directly from your IDE or AI tool using the Model Context Protocol (MCP).

Overview

The Model Context Protocol (MCP) allows AI assistants in your development environment to access Estuary's documentation contextually. This means you can ask questions about Estuary directly in your IDE and get accurate, documentation-backed answers without leaving your workflow.

Setup

Server URL: https://estuary.mcp.kapa.ai

Authentication Required

When you first connect to the Estuary MCP server, you'll be prompted to sign in with Google. This is a minimal authentication (OpenID Connect) that doesn't access your email, name, or personal data - it's only used to prevent abuse.

Setup steps vary depending on which AI assistant you're using.

Add the following to your .cursor/mcp.json file:

{
"mcpServers": {
"estuary": {
"type": "http",
"url": "https://estuary.mcp.kapa.ai"
}
}
}

For more information, see the Cursor MCP documentation.

What you can do

Once connected, you can ask context-aware questions about Estuary from within your editor. For example:

  • "How do I set up a PostgreSQL CDC capture?"
  • "What's the difference between captures and materializations?"
  • "How do I create a derivation in TypeScript?"
  • "What connectors are available for data warehouses?"
  • "How do I configure schema evolution settings?"

The AI assistant will use Estuary's documentation to provide accurate, up-to-date answers while you code.