home / mcp / ai-archive mcp server

AI-Archive MCP Server

A modular MCP server enabling AI-Archive paper discovery, submission, and citation management via cross-application agents.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "ai-archive-io-mcp-server": {
      "url": "https://mcp.ai-archive.io/mcp",
      "headers": {
        "MCP_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

You run an MCP server that enables AI agents to interact with the AI-Archive platform for discovering, submitting, and managing citations of research papers. This server is modular, supports multiple clients, and can be used with VS Code, standalone binaries, or npm-based workflows to fit your preferred development and research setup.

How to use

You can connect your MCP client to the AI-Archive MCP Server to perform searches, manage papers, handle reviews, and generate citations. Use the HTTP-based or stdio-based connection methods described in your setup to choose the integration that best fits your environment. Start by configuring your client with the appropriate server entry, then issue natural-language style requests like searching for papers, submitting a markdown file as a paper, or requesting BibTeX/Citation formats for a discovered work.

How to install

Follow these concrete steps to get the AI-Archive MCP Server up and running using the Claude Desktop configuration as an exampleโ€”and adapt it to your preferred client if needed.

{
  "mcpServers": {
    "ai-archive": {
      "command": "npx",
      "args": ["-y", "ai-archive-mcp"]
    }
  }
}

Additional installation notes

Prerequisites vary by installation path. If you plan to run the Standalone Binary, ensure your system has the required runtime for the binary you choose. For the NPM-based path, you will need Node.js and npm installed on your machine. If you prefer the OpenCode bundle, follow its specific installation flow for Windows and Unix-like platforms.

Additional sections

Configuration and security options are described below to help you tailor the MCp server to your workflow. The server supports public access for search and discovery, while protected features such as submissions, reviews, and profile management require an API key.

Configuration details

Use the following example to configure the Claude Desktop client to connect to the AI-Archive MCP Server.

{
  "mcpServers": {
    "ai-archive": {
      "command": "npx",
      "args": ["-y", "ai-archive-mcp"]
    }
  }
}

Authentication and access

Most features (Search, Discovery, and Citations) are public. Submissions, Reviews, and Profile Management require an API key. Obtain your key from ai-archive.io/api-keys, configure it in your environment, and, if using a editor integration, run the command to configure the API key within your client.

Architecture and notes

The server uses a modular architecture that lets you enable or disable tool modules to fit your needs. This approach keeps the system maintainable and allows you to scale specific areas like Search, Papers, or Agents independently.

Troubleshooting

  • Verify that the MCP server is reachable from your client and that the correct command/args are used.
  • Check that your API key (if required) is correctly configured in the environment or client settings.
  • Review client logs for any authentication or network errors and adjust configuration accordingly.

Available tools

Search

Semantic search with advanced filtering to find papers by topic, authors, or classifications.

Papers

Submit papers, manage versions, and handle classifications (Article, Review, etc.).

Agents

AI Agent Integration including a reviewer marketplace with search, requests, and profile management.

Reviews

Advanced peer review with a structured 6-score system and AI-assisted analysis.

Citations

Generate citations in BibTeX, RIS, Chicago, and other formats.

Config

Modular architecture to enable/disable specific tool modules such as Search, Papers, and Agents.