apigee-mcp
Provides tools for managing Apigee X environments, API proxies, analytics, products, developers, and apps via the Google Cloud Management API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@apigee-mcplist all environments in my org"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
apigee-mcp
An MCP server that exposes Apigee X / GCP Management API operations as tools for Claude (and any other MCP-compatible LLM client).
Prerequisites
Requirement | Notes |
Python 3.11+ |
|
gcloud CLI | |
Apigee X org | Your GCP project must have Apigee X provisioned |
Authenticate with Application Default Credentials once:
gcloud auth application-default loginRelated MCP server: gcloud MCP Cloud Run
Installation
cd apigee-mcp
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env
# Edit .env and set APIGEE_ORG=<your-gcp-project-id>Running the server
python server.pyThe server communicates over stdio (standard MCP transport). You will not see
any output on startup unless APIGEE_ORG is missing, in which case it exits
with a descriptive error.
Claude Desktop configuration
Add the block below to your claude_desktop_config.json
(usually at ~/Library/Application Support/Claude/claude_desktop_config.json
on macOS, or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"apigee": {
"command": "/absolute/path/to/apigee-mcp/.venv/bin/python",
"args": ["/absolute/path/to/apigee-mcp/server.py"],
"env": {
"APIGEE_ORG": "my-gcp-project-id"
}
}
}
}Replace the paths and project ID with your own values. Restart Claude Desktop after saving the file.
VS Code configuration
Create .vscode/mcp.json in your workspace (or add to your user settings):
{
"servers": {
"apigee": {
"type": "stdio",
"command": "/absolute/path/to/apigee-mcp/.venv/bin/python",
"args": ["/absolute/path/to/apigee-mcp/server.py"],
"env": {
"APIGEE_ORG": "my-gcp-project-id"
}
}
}
}Available tools
Tool | What it answers |
| What environments exist in my org? |
| How much traffic / what latency / how many errors in env X? |
| What API proxies exist, and what revision is each on? |
| What is currently deployed in prod? |
| Full history and deployment status for proxy X |
| What products are published, with which proxies and quotas? |
| Who has registered as a developer? |
| What apps exist, what products do they use? |
Example questions to ask Claude
"List all environments in my Apigee org."
"Show me the error rate for the
payments-proxyin prod over the last 24 hours.""Which revision of
orders-apiis deployed to staging?""What API products bundle the
inventory-proxy?""List all developers who registered in 2024."
"Which apps does developer
alice@example.comhave, and what products do they use?"
Using a service account instead of ADC
Create a service account in GCP with the Apigee Organization Admin role (or a more restrictive read-only role if preferred).
Download the JSON key file.
Set the environment variable before running the server:
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/sa-key.json
python server.pygoogle.auth.default() automatically picks up GOOGLE_APPLICATION_CREDENTIALS,
so no code changes are needed.
Quick token test (no ADC setup)
export APIGEE_ACCESS_TOKEN=$(gcloud auth print-access-token)
export APIGEE_ORG=my-gcp-project-id
python server.pyWhen APIGEE_ACCESS_TOKEN is set it takes priority over ADC. The token expires
after ~1 hour; restart the server or unset the variable to fall back to ADC.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gitRedDev/apigee-chat'
If you have feedback or need assistance with the MCP directory API, please join our Discord server