MCP Integration¶
AIME LOC works as an MCP server, letting any AI agent (Claude, GPT, custom agents) measure model cognitive profiles as a tool call.
Installation¶
Configure in Claude Code¶
Add to your Claude Code MCP settings (~/.claude/settings.json):
{
"mcpServers": {
"aime-loc": {
"command": "aime-loc-mcp",
"env": {
"AIME_API_KEY": "sk-aime-academic_..."
}
}
}
}
Available Tools¶
Once configured, AI agents can call:
scan_model¶
Scan an AI model's cognitive profile.
Returns: Full cognitive profile with TC scores and per-function breakdown.
compare_models¶
Compare two models side-by-side.
Returns: Per-function deltas, winner, improved/degraded functions.
get_leaderboard¶
Get the public LOC leaderboard.
Returns: Ranked list of models with TC scores.
training_audit¶
Audit what training did to cognitive coherence.
Returns: Before/after profiles, coherence changes, recommendations.