docs/ai/model-context-protocol.mdx
The Model Context Protocol (MCP) is an open protocol that creates standardized connections between AI applications and external services like documentation. Infisical hosts an MCP server that exposes its documentation to any MCP client — Claude, Claude Code, Cursor, VS Code, ChatGPT, and others — so your agent can answer questions from Infisical's source documentation instead of relying on its training data.
When an AI tool is connected to the Infisical MCP server, it can search the documentation and retrieve full page content directly while generating a response. This means:
The Infisical Docs MCP server is publicly available at:
https://infisical.com/docs/mcp
No authentication is required — anyone can connect their AI tool to it.
See the [Model Context Protocol documentation](https://modelcontextprotocol.io/docs/tutorials/use-remote-mcp-server#connecting-to-a-remote-mcp-server) for more details.
```bash
claude mcp add --transport http Infisical https://infisical.com/docs/mcp
```
Verify the connection:
```bash
claude mcp list
```
See the [Claude Code documentation](https://docs.anthropic.com/en/docs/claude-code/mcp#installing-mcp-servers) for more details.
```json
{
"mcpServers": {
"Infisical": {
"url": "https://infisical.com/docs/mcp"
}
}
}
```
</Step>
<Step title="Test the connection">
In Cursor's chat, ask "What tools do you have available?" Cursor should show the Infisical MCP server as an available tool.
</Step>
</Steps>
See [Installing MCP servers](https://docs.cursor.com/en/context/mcp#installing-mcp-servers) in the Cursor documentation for more details.
```json
{
"servers": {
"Infisical": {
"type": "http",
"url": "https://infisical.com/docs/mcp"
}
}
}
```
See the [VS Code documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) for more details.
AI tools can connect to multiple MCP servers at once. Connected servers do not consume context until the AI invokes a search tool, and the AI decides when to search based on query relevance — it does not search every connected server for every question.
A few practices to get the most out of the Infisical MCP server: