get_note

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

Single note — paper, review, comment, decision, etc.

Parameters

NameTypeRequiredDescription
idstringyesOpenReview note id (e.g. “abc123XYZ”)
detailsstringnoComma-sep extras: replies, original, revisions, edges

Example call

Arguments

{
  "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_note","arguments":{"id":"abc123XYZ"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": "def456UVW",
  "details": "replies,revisions"
}

Response shape

FieldTypeDescription
notesarrayArray containing the requested note and optional details
Full JSON Schema
{
  "type": "object",
  "properties": {
    "notes": {
      "type": "array",
      "description": "Array containing the requested note and optional details",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Note identifier"
          },
          "forum": {
            "type": "string",
            "description": "Forum (paper) id if applicable"
          },
          "replyto": {
            "type": "string",
            "description": "Parent note id if this is a reply"
          },
          "content": {
            "type": "object",
            "description": "Note content fields"
          },
          "replies": {
            "type": "array",
            "description": "Child notes if details include 'replies'"
          },
          "original": {
            "type": "object",
            "description": "Original note if details include 'original'"
          },
          "revisions": {
            "type": "array",
            "description": "Prior versions if details include 'revisions'"
          },
          "edges": {
            "type": "array",
            "description": "Related edges if details include 'edges'"
          }
        }
      }
    }
  }
}

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