Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENREVIEW_BASEURL | Yes | The OpenReview API base URL (e.g., https://api2.openreview.net) | |
| OPENREVIEW_PASSWORD | Yes | Your OpenReview password | |
| OPENREVIEW_USERNAME | Yes | Your OpenReview email address |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_venues | List all OpenReview venues where you have an active role (Reviewer, Area Chair, or Senior Area Chair). |
| list_assignments | List papers assigned to you for a given venue. Args: venue_id: The venue identifier (e.g., 'ICLR.cc/2025/Conference'). Use list_venues to find this. role: Your role — 'reviewer', 'area_chair', or 'senior_area_chair'. Default: 'reviewer'. |
| get_submission | Get full details of a submission (title, abstract, authors, keywords, etc.). Args: venue_id: The venue identifier (e.g., 'ICLR.cc/2025/Conference'). submission_id: The submission's note ID. Provide this OR submission_number. submission_number: The submission's paper number. Provide this OR submission_id. |
| get_pdf | Download a submission's PDF and return the file path so you can read it. Args: venue_id: The venue identifier (e.g., 'ICLR.cc/2025/Conference'). submission_id: The submission's note ID. Provide this OR submission_number. submission_number: The submission's paper number. Provide this OR submission_id. |
| get_reviews | Get all official reviews for a submission. Args: venue_id: The venue identifier (e.g., 'ICLR.cc/2025/Conference'). submission_id: The submission's note ID. Provide this OR submission_number. submission_number: The paper number. Provide this OR submission_id. |
| get_review_status | Check review completion status for all your assigned papers. Args: venue_id: The venue identifier. role: Your role — 'reviewer', 'area_chair', or 'senior_area_chair'. Default: 'area_chair'. |
| submit_review | Prepare a review for submission. Returns a preview — call confirm_submission to actually post it. Args: venue_id: The venue identifier. submission_number: The paper number. rating: Numerical rating (scale depends on venue). confidence: Your confidence level (scale depends on venue). review_text: The main review text. title: Review title. Default: 'Official Review'. strengths: Paper strengths (if venue uses separate fields). weaknesses: Paper weaknesses (if venue uses separate fields). questions: Questions for the authors. limitations: Limitations discussion. ethics_flag: Whether to flag ethics concerns. |
| edit_review | Edit your existing review. Returns a preview — call confirm_submission to actually post the edit. Args: venue_id: The venue identifier. submission_number: The paper number. review_text: Updated review text. rating: Updated rating. confidence: Updated confidence. title: Updated title. strengths: Updated strengths. weaknesses: Updated weaknesses. questions: Updated questions. |
| submit_meta_review | Prepare a meta-review for submission. Returns a preview — call confirm_submission to post it. Args: venue_id: The venue identifier. submission_number: The paper number. recommendation: Your recommendation (e.g., 'Accept', 'Reject', 'Accept (Poster)', etc.). metareview_text: The meta-review text summarizing reviews and your assessment. confidence: Your confidence level (scale depends on venue). |
| get_discussion | Get all discussion comments on a submission (rebuttals, reviewer responses, AC comments). Args: venue_id: The venue identifier. submission_id: The submission's note ID. Provide this OR submission_number. submission_number: The paper number. Provide this OR submission_id. |
| post_comment | Post a comment on a submission. Returns a preview — call confirm_submission to post it. Default readers include ACs, SACs, and PCs. Override with the readers parameter. Args: venue_id: The venue identifier. submission_number: The paper number. comment_text: The comment text. readers: Who can see this comment. Defaults to ACs + SACs + PCs + Reviewers for the paper. |
| message_reviewer | Send a private message to a specific reviewer. Visible to the reviewer, ACs, SACs, and PCs. Returns a preview — call confirm_submission to actually send it. Args: venue_id: The venue identifier. submission_number: The paper number. reviewer_id: The reviewer's anonymous ID (e.g., 'Reviewer_ABCD'). subject: Message subject line. message_text: Message body. |
| confirm_submission | Confirm and submit a pending review, meta-review, or comment to OpenReview. Args: confirmation_id: The confirmation ID returned by submit_review, submit_meta_review, post_comment, or message_reviewer. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |