OpenReview

live AI/MLResearch

ML conference submissions and peer reviews (ICLR, NeurIPS, ICML, COLM, etc.). Public reads keyless.

6 tools
0ms auth
free tier 50 calls/day

Tools

list_venues

List venue groups.

Parameters
Name Type Description
query opt string
limit opt number
offset opt number
Try it
get_venue required: group_id

Venue metadata by group id.

Parameters
Name Type Description
group_id req string
Try it
list_submissions required: venue_id

Papers submitted to a venue.

Parameters
Name Type Description
venue_id req string
sort opt string
limit opt number
offset opt number
Try it
get_note required: id

Single note (paper, review, comment, decision).

Parameters
Name Type Description
id req string
details opt string
Try it
get_paper required: forum_id

Paper + all child threads.

Parameters
Name Type Description
forum_id req string
Try it
search_notes required: query

Full-text search across notes.

Parameters
Name Type Description
query req string
content_field opt string
signature opt string
limit opt number
offset opt number
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/openreview/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/openreview/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_venues","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("list_venues", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ml conference submissions and peer reviews (iclr, neurips, icml, colm, etc");