MCP Server
Use Abel as a native tool in Claude, GPT, or any MCP-compatible AI assistant.
Installation
npm install -g abel-mcp
# Or use npx (no install)
npx abel-mcp --api-key sk-your-keyConfiguration
Add Abel to your MCP settings file:
{
"mcpServers": {
"abel": {
"command": "npx",
"args": ["abel-mcp"],
"env": {
"ABEL_API_KEY": "sk-your-key"
}
}
}
}Available Tools
Once connected, your LLM has access to 5 tools:
abel_schema_searchSearch Abel's causal world model for variables, communities, and neighborhoods.
abel_causal_explainExplain what causally drives a variable — parents, children, cross-domain chains.
abel_causal_interveneSimulate causal intervention: if X changes, what happens to Y?
abel_causal_predictPredict a variable using its causal Markov blanket.
abel_causal_analyzeUpload data and run full autonomous causal analysis (39 algorithms).
Example Interaction
Once configured, just ask your AI assistant a causal question:
“If oil prices hit $120, what happens to US inflation?”
Uses abel_schema_search to find “WTI_Crude” and “CPI”, then calls abel_causal_intervene to compute the causal effect: +2.1% CPI increase via the WTI → CPI causal chain (τ=30h).