MCP Hub
Back to servers

IEEE Xplore MCP Server

Allows users to search and retrieve academic papers, metadata, and citation counts from the IEEE Xplore digital library. It supports full-text search, author-specific queries, and publication tracking through the IEEE Xplore API.

Updated
Feb 21, 2026

IEEE Xplore MCP Server

MCP server that wraps the IEEE Xplore API, letting you search and retrieve academic papers from Claude Code.

Setup

  1. Get a free API key at https://developer.ieee.org
  2. Install and build:
npm install
npm run build
  1. Add to ~/.claude.json:
{
  "mcpServers": {
    "ieee-xplore": {
      "command": "node",
      "args": ["/home/danieltyukov/workspace/personal/ieee-mcp/dist/index.js"],
      "env": {
        "IEEE_API_KEY": "your-api-key-here"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
IEEE_API_KEYYesAPI key from developer.ieee.org
IEEE_AUTH_TOKENNoAuth token for paywalled full-text access

Tools

ToolDescription
search_papersFull-text search with Boolean operators and filters (author, year, content type, etc.)
get_paper_detailsGet verbose metadata for a paper by article number or DOI
get_paper_citationsGet citation counts (papers + patents) for a paper
get_full_textRetrieve full text (Open Access or with auth token)
search_by_authorSearch papers by author name
search_by_publicationSearch papers within a journal or conference

Rate Limits

The free IEEE API tier allows ~200 calls/day with up to 200 results per call.

Reviews

No reviews yet

Sign in to write a review