search_notes

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

Full-text search across OpenReview notes (papers, reviews, decisions) by query string; optionally restrict to a content field (e.g. title, abstract) or filter by author signature; returns matching note ids, titles, and venues.

Parameters

NameTypeRequiredDescription
querystringyesFree-text query
content_fieldstringnoRestrict to a content field (e.g. “title”, “abstract”)
signaturestringnoFilter by signature group (e.g. author profile id)
limitnumberno1-1000 (default 25)
offsetnumberno0-based offset

Example call

Arguments

{
  "query": "transformer attention mechanism"
}

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":"search_notes","arguments":{"query":"transformer attention mechanism"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_notes', {
  "query": "transformer attention mechanism"
});

More examples

{
  "query": "neural scaling laws",
  "content_field": "abstract",
  "limit": 50
}

Response shape

FieldTypeDescription
notesarraySearch results
countnumberTotal number of matching notes
Full JSON Schema
{
  "type": "object",
  "properties": {
    "notes": {
      "type": "array",
      "description": "Search results",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Note identifier"
          },
          "forum": {
            "type": "string",
            "description": "Forum (paper) id"
          },
          "content": {
            "type": "object",
            "description": "Note content fields"
          }
        }
      }
    },
    "count": {
      "type": "number",
      "description": "Total number of matching notes"
    }
  }
}

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