get_paper

Pack: openreview · Endpoint: https://gateway.pipeworx.io/openreview/mcp

Paper + all child notes (reviews, rebuttal, decision, metareview). Pass the forum id (= paper note id).

Parameters

NameTypeRequiredDescription
forum_idstringyesForum (paper) note id

Example call

Arguments

{
  "forum_id": "abc123XYZ"
}

curl

curl -X POST https://gateway.pipeworx.io/openreview/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_paper","arguments":{"forum_id":"abc123XYZ"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_paper', {
  "forum_id": "abc123XYZ"
});

Response shape

FieldTypeDescription
notesarrayPaper and all related notes (reviews, rebuttal, decision, metareview)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "notes": {
      "type": "array",
      "description": "Paper and all related notes (reviews, rebuttal, decision, metareview)",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Note identifier"
          },
          "forum": {
            "type": "string",
            "description": "Forum (paper) id"
          },
          "replyto": {
            "type": "string",
            "description": "Parent note id if this is a reply"
          },
          "content": {
            "type": "object",
            "description": "Note content fields"
          },
          "signatures": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Author signatures"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "openreview": {
      "url": "https://gateway.pipeworx.io/openreview/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026