Skip to main content
Glama
Usama1002

Research Buddy MCP Server

by Usama1002

Get Author Details

get_author_details

Retrieve a Semantic Scholar author profile and their papers by author ID to support literature review and citation analysis.

Instructions

Get author profile and their papers.

  • author_id: Semantic Scholar Author ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
author_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it only names the return contents. It says nothing about pagination of the papers list, rate limits, auth requirements, or whether a missing author_id errors versus returns empty.

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

Conciseness4/5

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

Two short lines, purpose front-loaded, no wasted prose. The bulleted parameter line is slightly awkward formatting for a single-sentence description but costs nothing.

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

Completeness3/5

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

A one-parameter lookup tool is simple enough that a short description can suffice, but with no annotations and no output schema the definition should still say what the profile contains and how the papers list behaves. As written it is adequate but thin.

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

Parameters3/5

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

Schema coverage is 0% (the property is bare 'type: string'), but the description compensates by specifying this is a 'Semantic Scholar Author ID', which is genuinely more informative than the schema alone. It does not, however, give an ID format or example.

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

Purpose4/5

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

States a specific verb and resource ('Get author profile and their papers'), so the agent knows this retrieves an author record plus associated papers. However, it does not distinguish itself from the sibling search_authors, leaving the lookup-by-ID vs search-by-name split implicit.

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

Usage Guidelines2/5

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

No when-to-use guidance and no mention of the sibling search_authors, which is the natural way to obtain an author_id in the first place. Usage is only inferable from the required parameter.

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