OpenReview
liveAI/MLResearchML conference submissions and peer reviews (ICLR, NeurIPS, ICML, COLM, etc.). Public reads keyless.
6tools
0msauth
free tier50 calls/day
Tools
list_venuesList venue groups.
Parameters
NameTypeDescription
queryoptstring—limitoptnumber—offsetoptnumber—Try it
Response
get_venuerequired: group_idVenue metadata by group id.
Parameters
NameTypeDescription
group_idreqstring—Try it
Response
list_submissionsrequired: venue_idPapers submitted to a venue.
Parameters
NameTypeDescription
venue_idreqstring—sortoptstring—limitoptnumber—offsetoptnumber—Try it
Response
get_noterequired: idSingle note (paper, review, comment, decision).
Parameters
NameTypeDescription
idreqstring—detailsoptstring—Try it
Response
get_paperrequired: forum_idPaper + all child threads.
Parameters
NameTypeDescription
forum_idreqstring—Try it
Response
search_notesrequired: queryFull-text search across notes.
Parameters
NameTypeDescription
queryreqstring—content_fieldoptstring—signatureoptstring—limitoptnumber—offsetoptnumber—Try it
Response
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");