Skip to main content
Glama

Server Details

MCP server providing developer tools data including npm packages, Stack Overflow Q&A, GitHub trending repos, and code snippets for AI agents.

Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.

If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.

Status
Unhealthy
Uptime
99.6% over 40 days
Last Tested
Transport
Streamable HTTP · MCP 2024-11-05
URL

TDQS

A4.4/5.0

Scored across 7 tools

Disambiguation4/5

Each tool targets a distinct resource/action, but the two academic search tools (search_arxiv vs search_google_scholar) overlap conceptually and could confuse an agent choosing between them. get_github_repo vs search_github are also related, though the get/search distinction is clear from descriptions.

Naming Consistency5/5

Uniform verb_noun snake_case pattern throughout: get_github_repo, get_npm_package, get_pypi_package, search_arxiv, search_github, search_google_scholar, search_stackoverflow. Fully predictable and consistent.

Tool Count5/5

Seven tools is well-scoped for a developer research/lookup server, with each tool covering a distinct source (GitHub, npm, PyPI, arXiv, Scholar, Stack Overflow). No redundant or filler tools.

Completeness4/5

Covers the major discovery and package-health sources with both get-detail and search operations, forming a coherent surface. Minor gaps exist (other registries like crates/Maven, and detail lookups for Stack Overflow/Scholar), but core workflows are covered.

Available Tools

7 tools
get_github_repoA
Read-only
Inspect

Fetch detailed statistics and metadata for a GitHub repository. Returns star count, fork count, open issue count, primary programming language, project description, last updated timestamp, and contributor count. Use for evaluating open-source projects, competitive analysis, or monitoring project health.

ParametersJSON Schema
NameRequiredDescriptionDefault
repoYesRepository in format 'owner/repo' (e.g. 'facebook/react', 'kubernetes/kubernetes')

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnly and openWorld hints. The description adds value by enumerating the specific returned metrics (star count, fork count, etc.) and indicates read-only behavior consistent with annotations. Does not disclose rate limits or error handling, but the bar is lower given 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 sentences, front-loaded with the primary action and resource, then a concise list of return fields and use cases. No redundant or filler content.

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

Completeness4/5

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

Given the simple one-parameter schema and no output schema, the description adequately explains what the tool returns and when to use it. It could mention failure behavior (e.g., repo not found) but is otherwise complete for this complexity level.

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 single parameter 'repo' is fully documented in the schema with format and examples, providing 100% coverage. The description adds no additional parameter-level meaning beyond what the schema already offers, so baseline of 3 applies.

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?

Clearly states it fetches detailed statistics and metadata for a specific GitHub repository, listing key return fields. This distinguishes it from sibling search tools like search_github and other package-specific tools.

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

Usage Guidelines4/5

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

Provides context on when to use (evaluating open-source projects, competitive analysis, monitoring project health) but does not explicitly contrast with alternatives like search_github. Clear usage context, though no exclusions are stated.

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

get_npm_packageA
Read-only
Inspect

Look up Node.js package information from NPM registry. Returns latest version, download statistics (weekly/monthly), dependency list, package description, license, and GitHub link. Use for evaluating JavaScript libraries, checking maintenance status, or reviewing package popularity.

ParametersJSON Schema
NameRequiredDescriptionDefault
package_nameYesNPM package name exactly as published (e.g. 'express', 'react', 'lodash', '@babel/core')

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, but the description adds valuable behavioral context by enumerating exactly what data is returned (latest version, download stats, dependencies, license, GitHub link) and that it fetches from the NPM registry. It does not mention error handling or rate limits, but the read-only nature and return payload are well disclosed.

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 two sentences: the first states the core action and return contents, the second gives usage scenarios. Every word earns its place with no redundancy, and the most important information is front-loaded.

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

Completeness4/5

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

For a simple read-only lookup tool with one parameter and no output schema, the description covers the essential behavior and return fields. It is sufficient for an agent to select and invoke the tool, though it could mention handling of nonexistent packages or network failures.

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 has 100% coverage for the single parameter, fully explaining that package_name must be the exact published name with examples. The description does not add further parameter-specific meaning, so the baseline of 3 applies.

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 looks up Node.js package information from the NPM registry, specifying the exact resource and action. It distinguishes itself from siblings like get_pypi_package and get_github_repo by focusing on npm packages and lists specific return data (version, downloads, dependencies, license, etc.).

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

Usage Guidelines4/5

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

The description provides explicit use cases: evaluating JavaScript libraries, checking maintenance status, and reviewing package popularity. It does not name alternatives or state when not to use it, but the context is clear relative to sibling tools. This is a strong 'when to use' statement, lacking only explicit exclusions.

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

get_pypi_packageA
Read-only
Inspect

Retrieve Python package information from PyPI (Python Package Index). Returns current version, download counts, dependencies, release history, package homepage, and PyPI page URL. Use for Python library evaluation, dependency analysis, or checking package quality metrics.

ParametersJSON Schema
NameRequiredDescriptionDefault
package_nameYesPyPI package name as listed in registry (e.g. 'numpy', 'django', 'flask', 'pandas')

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is known. The description adds value by specifying the exact data returned (current version, download counts, dependencies, release history, homepage, PyPI URL), which is useful behavioral context beyond the annotations. No contradictions.

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 two concise sentences, front-loaded with the action and resource. Every sentence adds value—first the purpose, then the return values and use cases. No redundancy or filler.

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 single-parameter read-only tool with strong annotations and clear return field enumeration, the description is complete. It covers what the tool does, what it returns, and when to use it. The absence of an output schema is mitigated by the explicit list of returned data.

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 has 100% coverage with a clear description of 'package_name' (e.g., 'numpy', 'django'). The description does not add much beyond the schema, but the schema itself is sufficiently descriptive, so the baseline score of 3 is appropriate.

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's function with a specific verb 'Retrieve' and a specific resource 'Python package information from PyPI'. It lists concrete return fields (version, download counts, dependencies, etc.), which distinguishes it from sibling tools like get_npm_package and get_github_repo.

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

Usage Guidelines4/5

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

The description explicitly states use cases: 'Use for Python library evaluation, dependency analysis, or checking package quality metrics.' This gives clear context for when to use the tool, but it does not mention when not to use it or name alternative tools for other package registries.

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

search_arxivA
Read-only
Inspect

Search arXiv for academic papers in computer science, machine learning, AI, physics, and mathematics. Returns paper titles, authors, abstracts, submission dates, and direct PDF download links. Use for researching algorithms, ML techniques, or emerging CS topics.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesResearch topic in CS/ML/physics (e.g. 'transformer architectures', 'distributed systems', 'quantum algorithms')
max_resultsNoPapers to return (default 10, suitable for focused research)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so safety is known. The description adds behavioral detail by specifying the return fields (titles, authors, abstracts, dates, PDF links), which helps the agent anticipate the output. It does not mention any limitations like metadata-only search, but that is not critical.

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 crisp sentences without fluff. The first sentence covers purpose and output, the second covers usage. All sentences earn their keep.

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?

With two simple parameters, full schema descriptions, and read-only annotations, the description provides sufficient context. It lists output fields and usage, making it complete for a search tool without needing an output schema.

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 schema covers both parameters with descriptions, so coverage is 100%. The description reinforces the query domain but adds no new parameter semantics beyond the schema. Baseline 3 applies.

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 opens with 'Search arXiv for academic papers in computer science, machine learning, AI, physics, and mathematics,' which clearly states the action, resource, and domain scope. It differentiates from sibling search tools like search_google_scholar by naming arXiv specifically and listing return fields.

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

Usage Guidelines4/5

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

The phrase 'Use for researching algorithms, ML techniques, or emerging CS topics' provides clear usage context. It does not explicitly name alternatives like search_google_scholar or exclude non-academic queries, so it stops short of a full 5.

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

search_githubA
Read-only
Inspect

Search GitHub repositories by keyword to discover code, projects, and libraries. Returns matching repositories with star count, description, language, and URL. Use for finding libraries, examples, or competitive projects in specific domains.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch keywords or project name (e.g. 'web framework', 'authentication library', 'data visualization')
max_resultsNoNumber of repository results to return (default 10, up to 100 for broad searches)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so safety is covered. The description adds useful context about return values (star count, description, language, URL) and the scope of results, which goes beyond 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 sentences, front-loaded with the primary action, and every clause earns its place. No fluff, no repetition, and appropriately sized for the tool's simplicity.

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 search tool with 2 well-documented parameters, open-world hints, and no output schema, the description covers purpose, use cases, and return shape. Nothing essential is missing.

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 100%, so the baseline is 3. The description does not add any extra semantic detail beyond what the schema already provides; it merely restates that it searches by keyword, which the 'query' parameter already says.

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?

Clearly states a specific verb and resource ('Search GitHub repositories by keyword') and explains what it returns. Differentiates itself from siblings like get_github_repo (search vs specific) and other search tools (Arxiv, Stack Overflow) through its scope.

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

Usage Guidelines4/5

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

Explicitly says to use it for 'finding libraries, examples, or competitive projects in specific domains,' giving a clear intended use case. Does not explicitly mention when not to use it, but the purpose is distinct enough from siblings.

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

search_google_scholarA
Read-only
Inspect

Search Google Scholar for computer science research papers, citations, and academic publications. Returns paper title, authors, publication details, citation count, and link to paper. Use for finding research on CS topics, reviewing state-of-the-art, or citation tracking.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesComputer science research topic (e.g. 'natural language processing', 'distributed consensus algorithms')
max_resultsNoMaximum papers to return (default 10)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds that it 'Returns paper title, authors, publication details, citation count, and link to paper,' which is valuable behavioral/return information beyond the annotations. No contradiction.

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 two sentences, front-loaded with the main action, then return fields and usage examples. Every sentence serves a purpose with no redundancy, making it highly concise and well-structured.

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 two-parameter, read-only search tool with no output schema, the description provides everything needed: purpose, return fields, and use cases. It is self-sufficient for an agent to decide whether and how to invoke it.

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 schema description covers 100% of the parameters ('query' and 'max_results' with descriptions and a default), so the baseline is 3. The tool description does not add additional parameter detail beyond what the schema already provides.

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 opens with 'Search Google Scholar for computer science research papers, citations, and academic publications,' specifying both verb and resource. It clearly distinguishes the tool from siblings like search_arxiv by naming Google Scholar and its CS focus, and it lists the return fields, reinforcing what the tool does.

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

Usage Guidelines4/5

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

The description states 'Use for finding research on CS topics, reviewing state-of-the-art, or citation tracking,' giving clear use cases. However, it does not explicitly mention alternatives or when not to use it, so it falls short of the highest bar for usage guidance.

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

search_stackoverflowA
Read-only
Inspect

Search Stack Overflow Q&A platform for programming questions, solutions, and code examples. Returns matching questions, answer count, view count, accepted answer snippet, tags, and link to full discussion. Use for troubleshooting, code examples, or finding solutions to common problems.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesProgramming problem or question (e.g. 'how to merge arrays in javascript', 'python asyncio example')
max_resultsNoNumber of Q&A results to retrieve (default 10, higher for comprehensive answers)

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is clear. The description adds value by detailing the return content (questions, answer count, view count, accepted answer snippet, tags, link), which goes beyond annotations. No contradiction with 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 two sentences, front-loaded with the tool's purpose, then return details, then usage context. Every sentence earns its place with no redundancy.

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

Completeness4/5

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

For a simple search tool with 2 parameters, no output schema, and supportive annotations, the description is complete enough. It covers purpose, return content, and usage. It could mention potential limitations (e.g., API rate limits) but that is not critical for this 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?

Schema description coverage is 100%, so both parameters (query and max_results) are well-documented in the schema itself. The description does not add extra parameter-specific semantics beyond what the schema provides, supporting the baseline score of 3.

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 clearly states it searches Stack Overflow for programming questions, solutions, and code examples, and lists specific return fields (answer count, view count, accepted answer snippet, tags, link). This specific verb+resource distinguishes it from sibling tools like search_github or search_arxiv.

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

Usage Guidelines4/5

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

The description provides explicit usage context: 'Use for troubleshooting, code examples, or finding solutions to common problems.' This clarifies when to use the tool but does not explicitly mention alternatives or when not to use it, which would warrant a 5.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updates
    • Changedget_github_repo1 field changed
      • addedInput schema / properties / repo / description
        Added value: +"Repository in format 'owner/repo' (e.g. 'facebook/react', 'kubernetes/kubernetes')"
    • Changedget_npm_package1 field changed
      • addedInput schema / properties / package_name / description
        Added value: +"NPM package name exactly as published (e.g. 'express', 'react', 'lodash', '@babel/core')"
    • Changedget_pypi_package1 field changed
      • addedInput schema / properties / package_name / description
        Added value: +"PyPI package name as listed in registry (e.g. 'numpy', 'django', 'flask', 'pandas')"
    • Changedsearch_arxiv2 fields changed
      • addedInput schema / properties / max_results / description
        Added value: +"Papers to return (default 10, suitable for focused research)"
      • addedInput schema / properties / query / description
        Added value: +"Research topic in CS/ML/physics (e.g. 'transformer architectures', 'distributed systems', 'quantum algorithms')"
    • Changedsearch_github2 fields changed
      • addedInput schema / properties / max_results / description
        Added value: +"Number of repository results to return (default 10, up to 100 for broad searches)"
      • addedInput schema / properties / query / description
        Added value: +"Search keywords or project name (e.g. 'web framework', 'authentication library', 'data visualization')"
    • Changedsearch_google_scholar2 fields changed
      • addedInput schema / properties / max_results / description
        Added value: +"Maximum papers to return (default 10)"
      • addedInput schema / properties / query / description
        Added value: +"Computer science research topic (e.g. 'natural language processing', 'distributed consensus algorithms')"
    • Changedsearch_stackoverflow2 fields changed
      • addedInput schema / properties / max_results / description
        Added value: +"Number of Q&A results to retrieve (default 10, higher for comprehensive answers)"
      • addedInput schema / properties / query / description
        Added value: +"Programming problem or question (e.g. 'how to merge arrays in javascript', 'python asyncio example')"
  2. 7 tool updates
    • First observedget_github_repo
    • First observedget_npm_package
    • First observedget_pypi_package
    • First observedsearch_arxiv
    • First observedsearch_github
    • First observedsearch_google_scholar
    • First observedsearch_stackoverflow

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables brand visibility monitoring across major AI platforms like ChatGPT, Claude, Gemini, and Perplexity. It allows users to track visibility scores, analyze competitor data, and receive actionable insights to improve AI-generated brand recommendations.
    16
    7 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables tracking competitor websites, changelogs, blog feeds, and pricing pages with meaningful diffs, classification, and Markdown digests via MCP tools for listing, adding, removing competitors, running checks, and retrieving digests or changes.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources