OpenReview MCP Server for AI/ML Conference Manuscripts
Use the OpenReview MCP server to fetch, read, and save AI/ML conference manuscripts for streamlined retrieval and submission management.
npx -y @anyakors/openreview-mcp-serverOverview
The OpenReview MCP Server provides a lightweight HTTP service that implements the Model Context Protocol (MCP) and exposes OpenReview conference manuscripts for programmatic retrieval, reading, and saving. It acts as a bridge between language models / tooling and the OpenReview dataset, turning manuscript metadata and PDF content into a standardized, machine-friendly interface. This makes it easier to build assistants, pipelines, or integrations that need consistent access to conference papers and their submission state.
Designed for developers and platform integrators, the server supports common MCP operations such as manifest introspection, document retrieval, and safe persistence of model-generated artifacts (e.g., annotations or enriched copies). Run as a standalone service (locally or in a container), it can be dropped into review tooling, dataset pipelines, or model-in-the-loop submission workflows to centralize access control and caching.
Features
- MCP-compatible endpoints for manifest, read, and save operations
- OpenReview integration: fetch metadata, PDF content, and submission history
- Configurable storage backend for downloading and caching manuscripts
- Authentication via API key or token to restrict access
- Simple HTTP API and examples for curl, Python, and Postman
- Docker-ready for quick deployment and reproducible runs
- Logging and health endpoints for monitoring and troubleshooting
Installation / Configuration
Prerequisites: git and Docker are recommended. You can also run from source if the repository uses a Node or Python runtime.
Clone the repository:
Run with Docker (recommended):
Run from source (example using npm; check repository for exact runtime instructions):
# if Node-based
# or if Python-based, use:
# pip install -r requirements.txt
# python -m openreview_mcp_server.app
Sample .env configuration
PORT=8080
OPENREVIEW_BASE_URL=https://api.openreview.net
OPENREVIEW_API_KEY=your_api_key_here
STORAGE_DIR=./data/manuscripts
LOG_LEVEL=info
CACHE_TTL_SECONDS=3600
Environment variables
- PORT: HTTP port to listen on (default 8080)
- OPENREVIEW_BASE_URL: Base URL for the OpenReview API
- OPENREVIEW_API_KEY: API key or token for OpenReview access
- STORAGE_DIR: Directory to store downloaded PDFs and cached data
- LOG_LEVEL: Logging verbosity (info, debug, warn, error)
- CACHE_TTL_SECONDS: How long to cache retrieved metadata/content
Available Resources
API endpoints (typical)
| Method | Path | Description |
|---|---|---|
| GET | /health | Health and readiness probe |
| GET | /mcp/manifest | MCP manifest describing capabilities |
| POST | /mcp/read | Read request — returns manuscript metadata and content |
| POST | /mcp/save | Save request — persist model-produced artifacts or modified content |
| GET | /manuscripts/{id} | Download or access a cached manuscript by id |
Repository and docs
- Source code and issues: https://github.com/anyakors/openreview-mcp-server
- OpenReview platform: https://openreview.net
Client suggestions
- Use curl for quick testing
- Use Postman/Insomnia for interactive exploration
- Build lightweight clients in Python (requests) or Node (fetch/axios) for integrations
Examples
Fetch manifest (curl)
Read a manuscript (curl)
Python example: fetch manuscript metadata and download PDF
=
=
# request metadata and link to PDF
=
=
=
=
Save an annotated manuscript (curl)
Use Cases
- Build a review assistant that can fetch submission PDFs and provide summaries or structured critiques to reviewers without manual downloading.
- Create ingestion pipelines that mirror accepted manuscripts into an internal dataset for benchmarking or model training, with consistent caching and provenance.
- Automate submission validation: fetch the latest manuscript version, run format/metadata checks, and persist validation reports back to the MCP server for audit trails.
- Enable research tools: let model-driven agents read, extract, and