OpenReview

liveAI/MLResearch

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

6tools
0msauth
free tier50 calls/day

Tools

list_venues

List venue groups.

Parameters
NameTypeDescription
queryoptstring
limitoptnumber
offsetoptnumber
Try it
get_venuerequired: group_id

Venue metadata by group id.

Parameters
NameTypeDescription
group_idreqstring
Try it
list_submissionsrequired: venue_id

Papers submitted to a venue.

Parameters
NameTypeDescription
venue_idreqstring
sortoptstring
limitoptnumber
offsetoptnumber
Try it
get_noterequired: id

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

Parameters
NameTypeDescription
idreqstring
detailsoptstring
Try it
get_paperrequired: forum_id

Paper + all child threads.

Parameters
NameTypeDescription
forum_idreqstring
Try it
search_notesrequired: query

Full-text search across notes.

Parameters
NameTypeDescription
queryreqstring
content_fieldoptstring
signatureoptstring
limitoptnumber
offsetoptnumber
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");