Skip to main content
Glama

Get Yok Tez Thesis Details

get_yok_tez_thesis_details

Fetch thesis metadata—advisor, institution, bilingual abstracts and keywords, and citations—via a single JSON endpoint, avoiding full PDF downloads.

Instructions

Fetch rich thesis metadata WITHOUT downloading the PDF.

Returns:

  • Advisor name

  • Full hierarchical location (University / Institute / Department / Discipline)

  • Turkish abstract (full text)

  • English abstract (full text)

  • Turkish keywords (parsed bilingual pairs)

  • English keywords (parsed bilingual pairs)

  • Citations in APA, IEEE, MLA, Chicago, and Harvard formats

Much cheaper than get_yok_tez_document_markdown — calls a single JSON endpoint instead of downloading the full PDF. Ideal for surveying or citing theses without needing their body text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
thesis_keyNoYÖK kayitNo. Required if 'detail_page_url' is not provided.
encrypted_noNoYÖK tezNo. Required if 'detail_page_url' is not provided.
detail_page_urlNoDetail page URL from a prior search result (preferred). The thesis_key and encrypted_no are extracted from its query string.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
advisorNoThesis advisor (e.g. 'PROF. DR. AYŞE YILMAZ').
abstract_enNoEnglish abstract (full text).
abstract_trNoTurkish abstract (full text).
keywords_enNoEnglish keywords with their Turkish glosses, as parsed pairs.
keywords_trNoTurkish keywords with their English glosses, as parsed pairs.
citation_apaNoAPA-style citation string (HTML).
citation_mlaNoMLA-style citation string (HTML).
citation_ieeeNoIEEE-style citation string.
error_messageNoError message if fetching or parsing failed.
location_fullNoFull hierarchical location: University / Institute / Department / Discipline.
citation_chicagoNoChicago-style citation string.
citation_harvardNoHarvard-style citation string (HTML).
source_detail_page_urlNoThe detail page URL these details were fetched for.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the full burden. The description implies a read-only operation ('Fetch', 'calls a single JSON endpoint') and notes a cost advantage, but it does not explicitly state that no data is modified, nor does it mention any rate limits, authentication, or error behavior. While the read-only nature is strongly implied, the lack of explicit side-effect disclosure leaves room for improvement given the absence of 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?

The description is concise and well-structured. It begins with a one-sentence summary, lists the return fields in a clear bulleted format, and ends with a cost/usage note. There is no redundant or filler text, and the most critical information is 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?

The tool has an output schema (indicated in context), and the description explicitly lists the key return fields, so an agent knows exactly what to expect. It also explains the cost difference and typical use case, making the description complete for decision-making and correct invocation. Missing error handling details are not critical for this metadata-fetch tool.

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?

The input schema already provides full descriptions for all three parameters (100% coverage), including the mutual exclusivity and preference for detail_page_url. The tool description does not add any additional meaning beyond what the schema provides, so it meets the baseline for high schema coverage without adding extra value.

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 clearly states the tool 'Fetches rich thesis metadata WITHOUT downloading the PDF', using a specific verb (fetch) and resource (thesis metadata). It explicitly distinguishes itself from the sibling get_yok_tez_document_markdown by stating it does not download the PDF, making the tool's purpose unambiguous.

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?

The description provides explicit usage guidance: 'Much cheaper than get_yok_tez_document_markdown' and 'Ideal for surveying or citing theses without needing their body text.' It names the alternative tool directly, allowing an agent to choose correctly between the two based on the need for body text vs. metadata.

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