Skip to main content
Glama

Get Summary

get_summary
Read-onlyIdempotent

Resolve PubMed IDs (from search_pubmed) to citation metadata: title, authors, journal, publication date, DOI. Batch up to ~200 IDs per call as a comma-separated string — much cheaper than calling per-ID. Use when you have PMIDs and need the citation; for the abstract text use get_abstract instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesComma-separated PubMed IDs (e.g., "33579999,34567890")

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
articlesYesArray of article metadata summaries

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "articles": {
      +      "description": "Array of article metadata summaries",
      +      "items": {
      +        "properties": {
      +          "authors": {
      +            "description": "List of author names",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "doi": {
      +            "description": "Digital Object Identifier",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "issue": {
      +            "description": "Journal issue",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "journal": {
      +            "description": "Full journal name",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "pages": {
      +            "description": "Page range",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "pmid": {
      +            "description": "PubMed ID",
      +            "type": "string"
      +          },
      +          "pub_date": {
      +            "description": "Publication date",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "pub_types": {
      +            "description": "Publication types",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "title": {
      +            "description": "Article title",
      +            "type": "string"
      +          },
      +          "url": {
      +            "description": "PubMed article URL",
      +            "type": "string"
      +          },
      +          "volume": {
      +            "description": "Journal volume",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          }
      +        },
      +        "required": [
      +          "pmid",
      +          "title",
      +          "authors",
      +          "journal",
      +          "pub_date",
      +          "volume",
      +          "issue",
      +          "pages",
      +          "pub_types",
      +          "doi",
      +          "url"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "articles"
      +  ],
      +  "type": "object"
      +}
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "ids": "33579999,34567890"
      +  }
      +]
  3. First observed

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds the batch limit (~200 IDs), a cost hint, and the source context ('from search_pubmed'), enriching behavioral understanding without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences cover purpose, usage, batch details, and an alternative. Every clause adds value, with the most important information front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with comprehensive annotations and an output schema, this description is complete. It covers what the tool does, when to use it, how to batch, and what not to use it for (abstracts).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage by describing 'ids' as a comma-separated string. The description adds context by mentioning the size limit (~200) and the recommendation to batch, and even connects it to search_pubmed, which helps the agent understand how to obtain valid IDs.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb 'Resolve' and the resource 'PubMed IDs' to 'citation metadata', enumerating the fields returned (title, authors, journal, publication date, DOI). It distinguishes itself from siblings by noting 'for the abstract text use get_abstract instead', making the tool's purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly states when to use the tool ('Use when you have PMIDs and need the citation') and provides a direct alternative ('for the abstract text use get_abstract instead'). It also provides batching guidance ('Batch up to ~200 IDs per call') and a cost rationale ('much cheaper than calling per-ID'), which helps agents choose it efficiently.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.