Connect the Amygdala Human Authority Index to Claude, ChatGPT, or any MCP-compatible AI. Ask in plain language, get back ranked, verified authorities in any niche.
Try asking your AI:"find the top 5 authorities on quantum computing"
Four tools map directly to the REST API. Same data, zero plumbing.
searchSearch any topic and get a ranked list of the top verified authorities in that niche.
detailGet full profile data: bio, authority score, verified social handles, follower counts, and website.
peersMap the influence network around a social handle and find who the top authorities in that circle are.
matchLook up an authority directly by their social media handle. Returns their ranked profile, name, country, and core topic.
Sign up and create an API key in your dashboard. The MCP server uses the same key as the REST API.
Go to dashboard →Download the MCP server file and install its dependencies.
# Download the server
curl -o server.py https://amygdala.eu/mcp/server.py
# Install dependencies
pip install mcp requestsYou don't need to start the server manually — Claude Desktop launches it automatically using the config in step 3.
Open ~/Library/Application Support/Claude/claude_desktop_config.json and add the Amygdala server:
{
"mcpServers": {
"amygdala": {
"command": "python3",
"args": ["/path/to/amygdala/mcp/server.py"],
"env": {
"AMYGDALA_API_KEY": "your_api_key_here"
}
}
}
}Restart Claude Desktop. The Amygdala tools will appear in Claude's tool list.
On some systems you may need to use the full Python path (e.g. /usr/local/bin/python3 or /usr/local/opt/python@3.11/libexec/bin/python3). Run which python3 in your terminal to find the correct path.
How it works: Claude Desktop spawns server.py as a local subprocess and communicates over stdio. Your API key stays on your machine — it's passed as an environment variable to the local process and never sent to Anthropic or any third party.
The same server works with any MCP client. Here's how to configure it in the most popular tools.
Add to your project's .mcp.json:
{
"mcpServers": {
"amygdala": {
"type": "stdio",
"command": "python3",
"args": ["/path/to/amygdala/mcp/server.py"],
"env": {
"AMYGDALA_API_KEY": "your_api_key_here"
}
}
}
}Or add it interactively:
claude mcp add amygdala -- python3 /path/to/amygdala/mcp/server.pyAdd to .cursor/mcp.json in your project root:
{
"mcpServers": {
"amygdala": {
"command": "python3",
"args": ["/path/to/amygdala/mcp/server.py"],
"env": {
"AMYGDALA_API_KEY": "your_api_key_here"
}
}
}
}On some systems, use the full Python path (run which python3 to find it).
Claude calls search, gets back a ranked list of authorities from the Human Authority Index, and presents them inline. No copy-pasting, no API calls to manage.
Here are the top 5 verified authorities on quantum computing, ranked by the Amygdala Authority Index:
Want me to pull the full profile for any of these? I can show their verified social handles, bio, and authority score.
Live example using the Amygdala MCP server in Claude Desktop. Results from the Authority Index.
Get an API key and plug Amygdala into any AI workflow in minutes.