Server data from the Official MCP Registry
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
Remote endpoints: streamable-http: https://mcp.altmetric.com/mcp
Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 2 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: ALTMETRIC_DETAILS_API_KEY
Environment variable: ALTMETRIC_EXPLORER_API_KEY
Environment variable: ALTMETRIC_EXPLORER_API_SECRET
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
Model Context Protocol (MCP) server that enables AI agents to access Altmetric APIs for tracking the attention and reach of research outputs across news outlets, policy documents, social media, and other online platforms.
Altmetric monitors where research is being discussed beyond traditional academic citations - from mainstream media coverage to policy citations, patent references, and social media engagement - providing a comprehensive view of real-world research impact.
There are two ways to connect:
https://mcp.altmetric.com/mcp and sign in with your Altmetric account. No API keys to copy or store, and you automatically get the tools for whatever you have access to (Explorer, Detail Pages, or both). Start here.The easiest way to use Altmetric in your AI client is the hosted server at https://mcp.altmetric.com/mcp. Point your client at that URL and sign in with your Altmetric account when prompted - the client runs a standard OAuth flow in your browser, so there are no API keys to copy or store. You get exactly the tools your account has access to.
Altmetric and enter the URL https://mcp.altmetric.com/mcp.Verify by asking Claude: "Use the Altmetric tools to look up the attention score for DOI 10.1038/nature12373"
claude mcp add --transport http altmetric https://mcp.altmetric.com/mcp
Then run /mcp inside Claude Code, select altmetric, and authenticate - a browser window opens for sign-in.
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
{
"mcpServers": {
"Altmetric": {
"url": "https://mcp.altmetric.com/mcp"
}
}
}
Cursor runs a browser sign-in the first time the server is used.
Add to .vscode/mcp.json (VS Code 1.101 or later):
{
"servers": {
"Altmetric": {
"type": "http",
"url": "https://mcp.altmetric.com/mcp"
}
}
}
Open the Command Palette, run MCP: List Servers, select Altmetric, and start it; sign in when prompted.
Open Settings → Connectors → Advanced and turn on Developer mode, then Settings → Connectors → Add custom connector, enter https://mcp.altmetric.com/mcp, and complete the OAuth sign-in. Requires a paid plan (Plus, Pro, Business, Enterprise, or Edu); custom connectors aren't available on the free tier. All Altmetric tools are read-only, so the read-only restriction on Plus/Pro plans doesn't limit them.
Any client that supports the Streamable HTTP transport with OAuth can connect. Point it at https://mcp.altmetric.com/mcp. On the first request the server returns 401 with a WWW-Authenticate header pointing at its discovery document (/.well-known/oauth-protected-resource), which the client uses to run the OAuth flow against Altmetric Explorer automatically.
The hosted server is an OAuth 2.1 resource server. Your client obtains a bearer token from Altmetric Explorer (the authorization server) for the mcp scope. The server exchanges that token for your account's entitlements and calls the Altmetric APIs on your behalf - your bearer token is never forwarded to those APIs. The advertised toolset reflects your entitlements, so you only ever see the tools for the products you can use.
Prefer to run the server yourself - offline, or managing API keys directly? Run it over stdio with npx.
Don't have keys yet? Request API access
Run the guided installer in Terminal - it checks Node.js, prompts for your API keys, and configures Claude Desktop automatically:
bash <(curl -fsSL https://raw.githubusercontent.com/altmetric/altmetric-mcp/main/install.sh)
Or if you've cloned the repo:
bash install.sh
Prefer to set things up manually? See the per-client instructions below.
Configure your MCP client to run the server using npx. Include only the API credentials you have access to.
{
"type": "stdio",
"command": "npx",
"args": ["-y", "altmetric-mcp"],
"env": {
"ALTMETRIC_DETAILS_API_KEY": "your_details_api_key_here",
"ALTMETRIC_EXPLORER_API_KEY": "your_explorer_api_key_here",
"ALTMETRIC_EXPLORER_API_SECRET": "your_explorer_api_secret_here"
}
}
Open the configuration file at:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonOn macOS you can open it from Terminal:
mkdir -p ~/Library/Application\ Support/Claude && open -a TextEdit ~/Library/Application\ Support/Claude/claude_desktop_config.json
Add the Altmetric MCP server. If the file is empty, paste this (replacing the placeholder keys with your own, and removing any you don't have):
{
"mcpServers": {
"Altmetric": {
"type": "stdio",
"command": "npx",
"args": ["-y", "altmetric-mcp"],
"env": {
"ALTMETRIC_DETAILS_API_KEY": "your_details_api_key_here",
"ALTMETRIC_EXPLORER_API_KEY": "your_explorer_api_key_here",
"ALTMETRIC_EXPLORER_API_SECRET": "your_explorer_api_secret_here"
}
}
}
}
If the file already has content, add "Altmetric": { ... } inside the existing "mcpServers" block, separated by a comma from the other entries.
Save the file and restart Claude Desktop (Cmd+Q then reopen).
Verify by asking Claude: "Use the Altmetric tools to look up the attention score for DOI 10.1038/nature12373"
Install directly from the command line:
claude mcp add --transport stdio altmetric-mcp \
--env ALTMETRIC_DETAILS_API_KEY=your_details_api_key_here \
--env ALTMETRIC_EXPLORER_API_KEY=your_explorer_api_key_here \
--env ALTMETRIC_EXPLORER_API_SECRET=your_explorer_api_secret_here \
-- npx -y altmetric-mcp
Add to your project .vscode/mcp.json:
{
"servers": {
"Altmetric": {
"type": "stdio",
"command": "npx",
"args": ["-y", "altmetric-mcp"],
"env": {
"ALTMETRIC_DETAILS_API_KEY": "your_details_api_key_here",
"ALTMETRIC_EXPLORER_API_KEY": "your_explorer_api_key_here",
"ALTMETRIC_EXPLORER_API_SECRET": "your_explorer_api_secret_here"
}
}
}
}
Reload VS Code to apply the changes. More information.
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"Altmetric": {
"type": "stdio",
"command": "npx",
"args": ["-y", "altmetric-mcp"],
"env": {
"ALTMETRIC_DETAILS_API_KEY": "your_details_api_key_here",
"ALTMETRIC_EXPLORER_API_KEY": "your_explorer_api_key_here",
"ALTMETRIC_EXPLORER_API_SECRET": "your_explorer_api_secret_here"
}
}
}
}
Any MCP-compatible client that supports stdio transport can use this server. Use the generic configuration above, adapting it to your client's config format. The command is always npx with args ["-y", "altmetric-mcp"] plus the environment variables for your API keys.
The local server runs as a child process of the MCP host (Claude Desktop, Claude Code, etc.). A few things are worth knowing before you wire it into a sensitive workflow.
What the server does
POST to the Explorer identifier_lists endpoint (create-or-find), used internally to scope an Explorer query to a supplied set of identifiers; it creates no user-visible state and is not destructive.structuredContent.What you should do
env block, not via a committed .env file. Keys appear in URL query strings; treat them as bearer-equivalent credentials.api.altmetric.com and www.altmetric.com. If your host or container runtime supports it, deny filesystem writes outside $TMPDIR and deny other network egress.What's enforced for you
https:.For vulnerability reports and supported versions see SECURITY.md.
| Problem | Solution |
|---|---|
| Sign-in window doesn't open / "authentication required" (hosted) | Your client must support remote MCP over HTTP with OAuth. In Claude Code run /mcp and authenticate; in Claude Desktop use the connector's Connect button. Make sure browser launches aren't blocked. |
| Signed in but some tools are missing (hosted) | You only see tools for the products your Altmetric account can access (Explorer, Detail Pages, or both). If you expect more, contact your Altmetric account admin. |
command not found: node (local) | Node.js is not installed. Download it here (version 20.6.0 or later). |
| Claude Desktop won't start after editing config (local) | The JSON file has a syntax error. Check for missing commas, unmatched brackets, or trailing commas. Paste it into jsonlint.com to validate. |
| "MCP server failed to start" (local) | Run npx -y altmetric-mcp in Terminal to see the actual error. Usually a missing/invalid API key or Node.js version too old. |
| Tools appear but return 403 errors | You're using a free-tier key with a commercial-tier tool (get_citation_details). Use get_citation_counts or search_citations instead. |
| First query is slow (local) | Normal. npx downloads the package on first run. Subsequent uses are faster. |
| Explorer tools fail (local) | Explorer tools need both ALTMETRIC_EXPLORER_API_KEY and ALTMETRIC_EXPLORER_API_SECRET. Make sure both are set. |
get_citation_counts and search_citationsget_citation_detailsIf you attempt to use get_citation_details with a free API key, you'll receive a 403 error.
This server provides eleven tools across two APIs:
| Tool | API | Tier | Description |
|---|---|---|---|
get_citation_counts | Details Page | Free | Attention metrics by identifier (DOI, PubMed ID, etc.) |
get_citation_details | Details Page | Commercial | Full mention text, author details (incl. Dimensions Researcher IDs), metadata |
search_citations | Details Page | Free | Search attention data across all outputs by timeframe |
get_batch_attention_data | Details Page | Commercial | Attention metrics for many DOIs at once, ranked |
translate_identifiers | Details Page | Commercial | Translate identifiers (DOI, PMID, etc.) to Altmetric IDs |
explore_research_outputs | Explorer | Institutional | Search and filter research outputs |
explore_attention_summary | Explorer | Institutional | Aggregated attention metrics by source and date |
explore_mentions | Explorer | Institutional | Individual mention details with filtering |
explore_demographics | Explorer | Institutional | Audience geographic and demographic data |
explore_mention_sources | Explorer | Institutional | Source/outlet analysis for mentions |
explore_journals | Explorer | Institutional | Journal metrics, rankings, and search |
All Explorer tools additionally accept researcher_id and grant_id filters (Dimensions IDs), and an identifiers parameter that scopes a query to a raw list of scholarly identifiers - the server builds the corresponding identifier list for you. Explorer responses also include sentiment data (sentiment-analysis-totals on research outputs, sentiment-analysis on X/Bluesky mentions).
For detailed parameters and examples, see TOOLS.md.
MIT
Be the first to review this server!
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption