You're viewing a demo portfolio

Join the waitlist
PRSM

update_collection

Active

Tool of Scite

declared in 1.0.0

Update a DOI-list Collection the signed-in user can edit. Partial update: only the fields you supply change; omitted fields keep their current values. Omitting `dois` leaves the DOI list untouched; supplying `dois` replaces it (unknown DOIs are dropped and surfaced via `unmatchedDoiCount`). Requires EDITOR or ADMIN access. Only DOI-list Collections can be updated here — saved-search Collections are managed in the scite web app. **Parameters:** - slug: The Collection slug (required). - name: New name (optional). - description: New description (optional). - dois: Replacement DOI list (optional; omit to leave DOIs unchanged). - is_public: New public flag (optional). **Returns:** The updated Collection with id, slug, name, accessType, and DOI counts.

Parameters schema

{
  "type": "object",
  "required": [
    "slug"
  ],
  "properties": {
    "dois": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Replacement DOI list (omit to leave DOIs unchanged), e.g. ['10.1038/s41586-020-2649-2']"
    },
    "name": {
      "type": "string",
      "description": "New Collection name"
    },
    "slug": {
      "type": "string",
      "description": "The Collection slug"
    },
    "is_public": {
      "type": "boolean",
      "description": "If true, anyone with the slug can view"
    },
    "description": {
      "type": "string",
      "description": "New description"
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

Scite

1/7 registries
View full server →
update_collection — Scite — PRSM MCP