Skip to main content
Glama
YusukeYajima

karte-datahub-mcp

by YusukeYajima

Server Quality Checklist

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

  • Disambiguation4/5

    The tools are mostly distinct: count_karte_events counts events, describe_karte_events_schema provides metadata, execute_karte_sql runs custom SQL, and query_karte_events retrieves event data. However, query_karte_events and execute_karte_sql could be confused as both retrieve data, though execute_karte_sql is more flexible with custom SQL while query_karte_events has structured parameters. The descriptions help clarify their boundaries.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern with snake_case: count_karte_events, describe_karte_events_schema, execute_karte_sql, and query_karte_events. The naming is predictable and readable throughout the set.

    Tool Count4/5

    With 4 tools, the count is reasonable for a data query server focused on KARTE events. It covers core operations like counting, describing schema, querying, and custom SQL execution. It might benefit from additional tools for more advanced analytics or data manipulation, but the scope is well-defined and manageable.

    Completeness3/5

    The toolset covers basic read operations for KARTE event data, including counting, schema description, structured querying, and custom SQL. However, there are notable gaps: no tools for writing or updating data (e.g., inserting or modifying events), and limited to event data without broader data management capabilities. Agents can work around this for query tasks but may fail for data manipulation needs.

  • Average 3.9/5 across 4 of 4 tools scored. Lowest: 3.3/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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions that the tool 'gets the count' which implies a read-only operation, but doesn't specify whether it requires authentication, has rate limits, returns paginated results, or what happens with null parameters. The default date values are mentioned, but other behavioral aspects are undocumented.

    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 purpose statement followed by parameter documentation. Each parameter explanation is concise and informative. While efficient, the Japanese-only text might limit accessibility for non-Japanese speaking agents, and the structure could be slightly improved with clearer section headers.

    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 that an output schema exists, the description doesn't need to explain return values. However, for a 4-parameter counting tool with no annotations, the description should ideally provide more behavioral context about what 'count' means (e.g., is it aggregated counts when using group_by?). The parameter documentation is excellent, but overall context about the tool's behavior remains incomplete.

    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?

    With 0% schema description coverage, the description fully compensates by providing clear semantic information for all 4 parameters. It explains what each parameter does, provides example syntax ('event_name = "purchase"'), specifies date format requirements (YYYYMMDD), and documents default values (2 days ago for date_from, yesterday for date_to). This adds significant value beyond the bare schema.

    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 tool's purpose: 'KARTEイベントの件数を取得する' (Get the count of KARTE events). It specifies the verb ('取得する' - get/count) and resource ('KARTEイベント' - KARTE events), making the purpose unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'query_karte_events' which might also retrieve event data.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'query_karte_events' or 'execute_karte_sql', nor does it specify use cases, prerequisites, or exclusions. The parameter documentation implies filtering and grouping capabilities, but no contextual usage instructions are provided.

    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?

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states that the tool retrieves metadata including column names, types, and descriptions, which implies a read-only operation. However, it doesn't cover aspects like error handling, authentication needs, rate limits, or response format details beyond metadata. The description adds some context but lacks comprehensive behavioral traits.

    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, consisting of two sentences that directly state the purpose and what is returned. There is no wasted language or redundancy, and it is front-loaded with the main action. Every sentence earns its place by adding clear information.

    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 tool's complexity is low (0 parameters, read-only operation) and an output schema exists, the description is reasonably complete. It explains the purpose and the type of metadata returned, which aligns with the output schema's role in detailing return values. However, it could be more complete by addressing usage context or behavioral aspects like error cases, but for a simple schema retrieval tool, it's adequate.

    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?

    The input schema has 0 parameters with 100% coverage, meaning no parameters are documented in the schema. The description doesn't mention any parameters, which is appropriate since none exist. It adds value by explaining what metadata is returned (column names, types, descriptions), compensating for the lack of parameter documentation. Baseline is 4 for 0 parameters, as the description provides useful output semantics.

    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 tool's purpose: 'KARTEイベントテーブルのスキーマを取得する' (Get the schema of the KARTE events table). It specifies the verb '取得する' (get/retrieve) and the resource 'スキーマ' (schema), making it understandable. However, it doesn't explicitly differentiate from sibling tools like 'query_karte_events' or 'execute_karte_sql', which might also involve schema-related operations indirectly.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It mentions what the tool does but doesn't specify scenarios for usage, prerequisites, or exclusions. Given sibling tools like 'count_karte_events' and 'query_karte_events', there's no indication of when schema retrieval is preferred over data querying or counting.

    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?

    With no annotations provided, the description carries the full burden. It discloses key behavioral traits: automatic date constraints with defaults, parameter defaults, and limit range (1-10000). However, it doesn't mention important aspects like whether this is a read-only operation, potential rate limits, authentication requirements, or what happens with large result sets beyond the limit parameter. The description adds useful context but leaves significant gaps.

    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 purpose statement followed by detailed parameter documentation. It's appropriately sized for a 6-parameter tool. The only minor improvement would be front-loading more critical behavioral information before the parameter details, but overall it's efficient with minimal waste.

    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 tool's complexity (6 parameters, no annotations, but with output schema), the description is quite complete. It thoroughly documents all parameters and their semantics. The presence of an output schema means the description doesn't need to explain return values. The main gap is lack of behavioral context around permissions, rate limits, or error conditions, but the parameter documentation is comprehensive.

    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 schema description coverage is 0%, so the description must fully compensate. It does this excellently by providing detailed parameter documentation in the Args section: each parameter's purpose, format examples (YYYYMMDD, 'event_name = "click"'), default values, constraints (limit 1-10000), and special cases (None for no limit). This adds substantial meaning beyond what the bare schema provides.

    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 tool's purpose: 'KARTEイベントデータを取得する' (retrieve KARTE event data). It specifies the verb (retrieve) and resource (KARTE event data). However, it doesn't explicitly differentiate from sibling tools like count_karte_events or execute_karte_sql, which prevents a perfect score.

    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 context by mentioning automatic date constraints (default: 2 days ago to yesterday), which helps understand when to use it for date-filtered queries. However, it doesn't explicitly state when to use this tool versus alternatives like count_karte_events (for counting) or execute_karte_sql (for custom SQL), leaving the guidelines somewhat implied rather than explicit.

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

  • Behavior5/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure and excels. It reveals critical behavioral traits: guardrails on SQL execution, mandatory constraints for specific tables, automatic LIMIT application (1000) by default, rejection of destructive SQL operations, and the dry_run option for scanning only. This provides comprehensive insight into how the tool behaves beyond basic execution.

    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 appropriately sized and front-loaded: it starts with the core purpose, followed by key behavioral rules, and ends with a structured Args section. Every sentence earns its place by providing critical information without redundancy, making it efficient and easy to parse for an AI agent.

    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?

    Given the complexity of a SQL execution tool with 3 parameters, 0% schema coverage, no annotations, but an output schema present, the description is complete enough. It covers purpose, usage rules, behavioral constraints, and parameter semantics thoroughly. The output schema handles return values, so the description doesn't need to explain them, making this a well-rounded specification.

    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?

    Schema description coverage is 0%, so the description must compensate fully, which it does. The Args section explicitly explains each parameter's semantics: 'sql' is the SQL statement to execute, 'dry_run' confirms scan volume only when True, and 'no_limit' skips automatic LIMIT addition when True. This adds essential meaning beyond the bare schema, clarifying how parameters affect tool behavior.

    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: 'カスタムSQLを実行する(ガードレール付き)' (Execute custom SQL with guardrails). It specifies the verb (execute) and resource (custom SQL) and distinguishes it from sibling tools like count_karte_events, describe_karte_events_schema, and query_karte_events by focusing on raw SQL execution rather than predefined queries or metadata operations.

    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 guidelines: it states when to use specific constraints ('krt_pockyevent_v1_* テーブルへのクエリには _TABLE_SUFFIX 制約が必須' - queries to krt_pockyevent_v1_* tables require _TABLE_SUFFIX constraint), when alternatives apply (automatic LIMIT 1000 unless no_limit is True), and exclusions ('破壊的SQL(DROP, DELETE等)は拒否される' - destructive SQL like DROP, DELETE is rejected). This clearly guides when and how to use this tool versus other approaches.

    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

karte-datahub-mcp MCP server

Copy to your README.md:

Score Badge

karte-datahub-mcp MCP server

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/YusukeYajima/karte-datahub-mcp'

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