Connect GRIP MCP to Your Agentic IDE
Enterprise GraphRAG across every major AI IDE and developer agent. Choose your environment below for step-by-step instructions, copyable configuration files, environment variables, and verification prompts.
Claude Code Integration Guide
Anthropic's official terminal agent. Connects directly via stdio transport using `claude mcp add`.
1. Install GRIP package
Install GRIP globally via pip or pipx so the `grip` CLI command is available on your PATH.
pip install -U grip-protocol2. Add to Claude Code via CLI
Run the one-line command to register the GRIP MCP server with Claude Code:
claude mcp add grip grip --transport stdio3. Pass Environment Variables
Provide credentials inline or set them in your active shell / ~/.claude.json environment configuration.
claude mcp add grip -e TIGERGRAPH_HOST="https://..." -e TIGERGRAPH_SECRET="..." -e GOOGLE_API_KEY="..." grip4. Verify Connection
Launch Claude Code and check that all 50 tools are available:
claude
/mcp{
"mcpServers": {
"grip": {
"command": "grip",
"args": [
"--transport",
"stdio"
],
"env": {
"TIGERGRAPH_HOST": "https://your-tigergraph-host.i.tgcloud.io",
"TIGERGRAPH_USERNAME": "tigergraph",
"TIGERGRAPH_PASSWORD": "your_password",
"TIGERGRAPH_SECRET": "your_secret_alias",
"GOOGLE_API_KEY": "AIzaSy..."
}
}
}
}Verification Prompt to Test in Claude Code
Paste this prompt into your agent to verify all tool capabilities, schema discovery, and graph retrieval:
Required Environment Variables
Configure these credentials in your shell, .env, or IDE config
TIGERGRAPH_HOSTTigerGraph Cloud or local instance URI
Ex: https://tg-instance.i.tgcloud.io
TIGERGRAPH_SECRETTigerGraph REST++ auth secret or token
Ex: your_secret_here
GOOGLE_API_KEYGemini API key for embeddings & synthesis
Ex: AIzaSy...
.env file in your workspace root. GRIP automatically parses `.env` on startup.Included 50 MCP Tools
v0.5.0Production-Grade Backend
Every tool returns real data executed directly against your active TigerGraph or Neo4j backend. Responses adhere strictly to RFC JSON schemas.