Skip to main content
Glama
CodexVeritax

stackoverflow-mcp-server

by CodexVeritax

get_question

Retrieves a Stack Overflow question by its ID, with optional comments and choice of JSON or Markdown format.

Instructions

Get a specific Stack Overflow question by ID.

Args:
    question_id (int): The Stack Overflow question ID
    include_comments (Optional[bool]): Whether to include comments in results
    response_format (Optional[str]): Format of response ("json" or "markdown")
    ctx (Context): The context is passed automatically by the MCP

Returns:
    str: Formatted question details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
question_idYes
include_commentsNo
response_formatNomarkdown
Behavior2/5

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

No annotations are provided, so description carries full burden. It only states the basic action and parameters, lacking disclosure of behavioral traits like error handling, authentication needs, rate limits, or whether it's read-only.

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?

Description is front-loaded with the main sentence and includes a structured Args block. It is appropriately sized, though the Python docstring format is non-standard for MCP and could be condensed.

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?

Given no output schema, the description states 'Returns: str: Formatted question details' which is minimal. It does not specify what fields are included or any pagination/error behavior, leaving gaps for a tool with no annotations.

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?

Schema description coverage is 0%, so description must compensate. The Args section explains each parameter (question_id, include_comments, response_format) with types and optionality, adding meaning beyond the schema. However, it does not reiterate default values present in the schema.

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?

Description explicitly states 'Get a specific Stack Overflow question by ID', which is a clear verb+resource. It distinguishes from sibling tools (advanced_search, search_by_error, etc.) which are search-oriented.

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

Usage Guidelines3/5

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

The description implies using this tool when you have a question ID, but does not provide explicit when-to-use or when-not-to-use guidance. No mention of alternatives or prerequisites.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CodexVeritax/stackoverflow-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server