Skip to main content
Glama
jameselkins
by jameselkins

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.6

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: fetching time-series data, retrieving supported metrics, validating the API key, and generating two different formula types (ART for data, ARTINFO for metadata). No two tools overlap in function, making selection unambiguous.

    Naming Consistency4/5

    The naming follows a mostly consistent verb_noun pattern (get_*, validate_*, generate_*), but there is slight variation: 'get_artemis_data' vs 'get_artemis_supported_metrics_for_symbol' and 'art' vs 'artinfo' prefixes. Still, each name clearly conveys its function, and the deviations are minor.

    Tool Count5/5

    With 5 tools, the server is well-scoped for a focused API wrapper. It covers data retrieval, metadata discovery, key validation, and formula generation without bloat or unnecessary tools.

    Completeness4/5

    The tool set covers the core workflows: validating access, discovering supported metrics, retrieving data, and generating formulas for both time-series and asset info. A minor gap is the lack of a direct tool to list all symbols or fetch asset info without generating a formula, but this is not a critical dead-end.

  • Average 3.3/5 across 5 of 5 tools scored. Lowest: 2.6/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    The description says 'Get', implying a read-only operation, but does not disclose authentication requirements, rate limits, error behavior, or any side effects. With no annotations provided, the description carries the full burden and provides only minimal transparency.

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

    Conciseness3/5

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

    The purpose is front-loaded, but the description repeats the phrase 'for the given symbols and metrics' and includes the parameter list in the prose, making it somewhat redundant. It is not poorly structured, but it could be more concise.

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

    Completeness2/5

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

    The description omits crucial context such as the output format, error handling, authentication requirements, or any example calls. Since there is no output schema or annotations to fill these gaps, the tool definition feels incomplete for an agent to use reliably.

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

    Parameters2/5

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

    The description repeats the parameter names without adding meaningful semantics: 'symbols' and 'metrics' are undefined, with no examples or allowed values. It does add important guidance that dates must use YYYY-MM-DD, but this only covers two of the four parameters and does not compensate for the otherwise tautological explanations.

    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?

    The description clearly states the action ('Get Crypto data') and the resource ('from the Artemis API'), and names the key parameters (symbols, metrics, dates). It is distinguishable from siblings like 'get_artemis_supported_metrics_for_symbol' or 'validate_artemis_api_key', though it does not specify exactly what kind of data is returned.

    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 guidance is provided about when to use this tool versus the sibling tools. There is no mention of prerequisites such as validating the API key first or checking supported metrics, leaving the agent without direction on selection.

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

  • Behavior1/5

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

    The description is extremely minimal and does not disclose what validation entails, what the output looks like, whether it has side effects, or any permissions required. No annotations exist to supplement this gap.

    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?

    The description is a single, concise sentence. It is well-structured for its brevity, though it could benefit from a bit more detail.

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

    Completeness2/5

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

    The description does not mention how the API key is passed, what the success/failure output looks like, or any prerequisites. It is incomplete for an agent to use effectively without further information.

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

    Parameters2/5

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

    The schema declares zero parameters, but the description implies an API key input without explaining how it is supplied (e.g., environment variable, hidden config). This ambiguity reduces clarity about the actual invocation.

    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: to validate the Artemis API Key. It distinguishes itself from siblings by focusing on validation rather than data retrieval or formula generation.

    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 guidance is provided on when to use this tool versus alternatives or under what circumstances validation is needed. The description lacks context that would help an agent decide between this and other tools.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden. It does not disclose any behavioral aspects such as side effects, read-only nature, or permission requirements. The description focuses solely on output generation.

    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?

    The description is brief and well-organized, using a short introductory sentence and bullet-like notes. It avoids unnecessary verbosity while conveying the core purpose and important usage tips.

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

    Completeness2/5

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

    Given the complexity (7 parameters, no output schema), the description lacks essential context such as what the generated formula looks like, how parameters interact, or what the return value is. This leaves ambiguity for the agent.

    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 description explains some parameters (date format, order, metric types) but leaves others like 'show_dates' and 'hide_weekends' unexplained. Coverage is partial; the description adds some value but does not fully clarify all seven parameters.

    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?

    The description clearly states the action ('Generate') and the resource ('ART formula for Artemis Sheets'), and provides examples of use cases (prices, fees, revenue). It does not explicitly contrast with sibling tools, but the purpose is unambiguous.

    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 gives practical notes (date format, order, metrics) but does not explicitly state when to prefer this tool over alternatives like get_artemis_data. The context is implied but not explicit.

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

  • Behavior3/5

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

    The word 'Get' implies a read-only operation, but the description does not explicitly state side effects, authentication requirements, rate limits, or error behavior. Since no annotations are provided, the description carries the full burden, and it only partially addresses behavioral context.

    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 directly to the point. It avoids unnecessary fluff and clearly communicates the core function and the key constraint on the symbol parameter in two short sentences.

    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?

    The description mentions that the tool returns metrics with descriptions and sources, giving an agent a reasonable idea of the output. However, with no output schema, details about response structure, pagination, or possible empty results are not covered, though the tool's simplicity keeps this from being a major gap.

    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 only defines 'symbol' as a required string with no description. The tool description adds that it accepts only one symbol at a time, which is useful, but it does not clarify the expected format (e.g., ticker symbol, name) or provide examples, leaving some ambiguity.

    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 purpose: to get the list of metrics supported by Artemis for a given symbol, including their descriptions and sources. It uses a specific verb ('get') and identifies the resource ('metrics'), making the intent unambiguous.

    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 provides some usage guidance by explicitly noting that the symbol parameter accepts only one symbol at a time. However, it does not mention when to prefer this tool over sibling tools like get_artemis_data or how it relates to them, so guidance is partial.

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

  • Behavior3/5

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

    Annotations are absent, so the description must carry transparency. It states it creates properly formatted formulas and shows example output strings (e.g., =ARTINFO(...)). It does not explicitly mention side effects, return type, or whether it is purely a string generator, but the examples imply the output format. This is adequate but not exhaustive.

    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?

    The description is well-structured with a clear opening statement followed by bulleted usage instructions. It is not overly verbose, but the multiple examples and conditional sections add length. It is effectively organized and front-loaded with the core purpose.

    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 formula generator with no output schema, the description covers its purpose and parameter usage thoroughly. It does not mention error handling or alternative tool selection, but those are less critical for this tool's scope. Overall, it provides sufficient context for correct invocation.

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

    Parameters5/5

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

    The input schema provides no descriptions for top_n, parameter1, or parameter2 (0% coverage). The description fully explains each parameter with usage scenarios, examples, and default values, completely compensating for the schema gap.

    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 generates ARTINFO formulas for Artemis Sheets, with specific verb 'generate' and resource 'ARTINFO formula'. It distinguishes from sibling tools by explicitly naming ARTINFO (versus ART) and providing examples.

    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 explicit conditional usage instructions for both market rankings (top_n) and asset information (parameter1/parameter2), with examples. However, it does not directly compare with sibling generate_art_formula or mention alternative tools, so it stops short of full alternative guidance.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

artemis-mcp MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

artemis-mcp MCP server – quality and maintenance score on Glama

Copy to your README.md:

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/jameselkins/artemis-mcp'

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