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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Free-text query |
content_field | string | no | Restrict to a content field (e.g. “title”, “abstract”) |
signature | string | no | Filter by signature group (e.g. author profile id) |
limit | number | no | 1-1000 (default 25) |
offset | number | no | 0-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
| Field | Type | Description |
|---|---|---|
notes | array | Search results |
count | number | Total 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.