The MCP server is a key component for integrating Large Language Models (LLMs) with the functionalities offered by the Pistacy platform. It enables easy and flexible use of Pistacy’s data and tools within LLM queries. Through the MCP server, LLMs can access up-to-date information and resources available in Pistacy, and even create new resources like ADR and RFC documents.
Each project in Pistacy has its own unique MCP Key withing the Organization.
After generating the MCP Key in the Organization settings, it must be
provided in the Authorization
header as a Bearer token when making
requests to the server.
To create a MCP Key for a Project:
Once the Key is saved, you will see the whole MCP Key ready to copy. Remember that this is one-time only operation. When you leave this tab of refresh the page, MCP Key won't be accessible any more for security reasons.
Here you can find a Claude Command that adds Pistacy.io MCP Server into your project.
claude mcp add pistacy --url https://app.pistacy.io/mcp --header "Authorization: Bearer {MCP_KEY}" --scope project
Note: Replace {MCP_KEY}
with your actual MCP Key.
Example .mcp.json
for Claude Code:
{
"mcpServers": {
"pistacy": {
"type": "https",
"url": "https://app.pistacy.io/mcp",
"headers": {
"Authorization": "Bearer {MCP_KEY}"
}
}
}
}
Try Pistacy.io platform - no credit card required!
Start for free!