Skip to main content
Glama
J-Quants

j-quants-doc-mcp

Official
by J-Quants

j-quants-doc-mcp

J-Quants APIのドキュメントを提供するMCPサーバー。Claude DesktopなどのMCPクライアントから、J-Quants APIのエンドポイント検索、詳細情報の取得、実行可能なサンプルコード生成、FAQ回答などの機能を利用できます。

インストール

必須要件

  • Python 3.10以上

  • uv (推奨) または pip

uv toolを使用する場合(推奨)

# GitHubから直接インストール
uv tool install git+https://github.com/J-Quants/j-quants-doc-mcp.git

# またはローカルから
git clone https://github.com/J-Quants/j-quants-doc-mcp.git
cd j-quants-doc-mcp
uv tool install .

pipを使用する場合

# GitHubから直接インストール
pip install git+https://github.com/J-Quants/j-quants-doc-mcp.git

# またはローカルから
git clone https://github.com/J-Quants/j-quants-doc-mcp.git
cd j-quants-doc-mcp
pip install .

Related MCP server: Anthropic Docs MCP Server

起動方法

スタンドアロンで起動

# uv toolでインストールした場合
uvx j-quants-doc-mcp

# pipでインストールした場合
j-quants-doc-mcp

Claude Desktopから使用

claude_desktop_config.jsonに以下を追加:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "uvx",
      "args": ["j-quants-doc-mcp"]
    }
  }
}

pipでインストールした場合は、j-quants-doc-mcp コマンドを直接指定します:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "j-quants-doc-mcp",
      "args": []
    }
  }
}

設定ファイルの場所:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursorから使用

メニューバー「Cursor」→「Preferences」→「Cursor Settings」を開き、
左のメニュー「Tools & MCP」を選択し、「New MCP Server」をクリック。
開かれたJSONファイル(~/.cursor/mcp.json)に以下を追加:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "uvx",
      "args": ["j-quants-doc-mcp"]
    }
  }
}

pipでインストールした場合は、j-quants-doc-mcp コマンドを直接指定します:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "j-quants-doc-mcp",
      "args": []
    }
  }
}

以上の設定で、AIクライアントにてMCPサーバーを利用する準備が完了しました。

アップデート

既にインストール済みの場合、最新版へのアップデートは以下の方法で行えます。

uv toolを使用している場合

# GitHubから直接インストールした場合
uv tool upgrade j-quants-doc-mcp

# ローカルクローンからインストールした場合
cd j-quants-doc-mcp
git pull
uv tool upgrade j-quants-doc-mcp

pipを使用している場合

# GitHubから直接インストールした場合
pip install --upgrade git+https://github.com/J-Quants/j-quants-doc-mcp.git

# ローカルクローンからインストールした場合
cd j-quants-doc-mcp
git pull
pip install --upgrade .

アップデート後、Claude DesktopやCursorを再起動することで新しいバージョンが反映されます。

トラブルシューティング

Claude Desktopで認識されない

  1. 設定ファイルのJSONが正しいか確認

  2. Claude Desktopを再起動

  3. MCPサーバーのログを確認

生成されたコードが実行できない

  1. 必要な依存関係をインストール: pip install httpx python-dotenv

  2. 環境変数が設定されているか確認

関連リンク

Available Tools

7 tools
describe_endpointA

指定されたエンドポイントの詳細情報を取得する。

Args: endpoint_name: エンドポイント名(V2例: eq-master, eq-bars-daily / V1例: daily_quotes, listed_info等) api_version: APIバージョン。会話の文脈からV1かV2かを判断して指定する。V1のエンドポイントパス(/v1/...)やV1特有の名前(daily_quotes等)が含まれる場合は'v1'を指定。デフォルトは'v2'。

Returns: エンドポイントの詳細情報を含む辞書(名前、パス、メソッド、パラメータ、レスポンス、認証要否、利用可能プラン)

ParametersJSON Schema
NameRequiredDescriptionDefault
api_versionNov2
endpoint_nameYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the return structure (dictionary of name, path, method, parameters, response, auth, plans) and implies a read-only lookup, but does not explicitly state it is non-mutating, nor cover error conditions or rate limits. It adds useful context beyond the schema but leaves some aspects implicit.

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 summary line, Args, and Returns sections. It is a bit longer than strictly necessary, but the api_version guidance is valuable and earns its place. No redundancy with the schema.

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?

For a simple 2-parameter tool with an output schema, the description covers purpose, parameter semantics, and return values. However, it lacks any mention of when to prefer this tool over search_endpoints or get_info, and it does not address potential errors or prerequisites (e.g., auth). These gaps prevent a higher score.

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. It does exceptionally well: endpoint_name is illustrated with V2/V1 examples (eq-master, daily_quotes), and api_version comes with decision rules based on conversation context and endpoint naming patterns. This goes far 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 retrieves detailed information for a specified endpoint ('指定されたエンドポイントの詳細情報を取得する'), with a specific verb and resource. It does not explicitly distinguish from sibling tools like search_endpoints or get_info, so it misses the top score for sibling differentiation.

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?

There is implied usage (need details for a known endpoint) and practical guidance for choosing api_version based on V1/V2 context ('V1のエンドポイントパス...が含まれる場合は'v1'を指定'). However, it does not provide explicit when-to-use vs alternatives (e.g., search_endpoints) or exclusions, so it only reaches the 'implied usage' level.

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

fetch_spec_pageA

指定されたパスのSpecificationページを取得する。

エンドポイント詳細だけでなく、参照データページ(例: 休日区分、市場コード等)も取得できます。 Markdown内のリンクを辿って追加情報を取得する際に使用してください。

Args: path: Specificationページのパス(例: /spec/mkt-cal/holiday-division)

Returns: Specificationページの情報を含む辞書: - content: Markdownテキスト - source_url: 取得元URL - path: リクエストされたパス - cached: キャッシュから取得したかどうか - instruction: LLMへの指示

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the return dictionary fields, including a 'cached' flag indicating potential caching behavior, but does not mention authentication, error handling, or rate limits. The safety profile is implied as read-only, but not explicitly stated.

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 brief purpose statement, usage note, and separately labeled Args/Returns sections. It is not overly verbose, and each section contributes necessary information. Slightly longer than the ideal two-sentence format, but still efficient.

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 tool with one parameter and no output schema, the description covers the essential aspects: purpose, usage, parameter example, and return fields. It lacks explicit error or authentication details, but overall it gives an agent enough to select and invoke the tool correctly.

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 schema has zero description coverage, but the description defines the 'path' parameter with an example ('/spec/mkt-cal/holiday-division'), adding meaning that the schema lacks. It does not go into exhaustive detail about path construction, but the example is sufficient for most cases.

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 that the tool retrieves a Specification page for a given path, and explicitly notes it can also fetch reference data pages (e.g., holiday divisions, market codes). This distinguishes it from sibling tools like describe_endpoint by emphasizing raw page retrieval and link-following scenarios.

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 a clear usage context: 'Use when following links in Markdown to obtain additional information.' However, it does not explicitly mention alternatives like describe_endpoint or state when not to use this tool, so it falls short of a perfect score.

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

get_infoA

API仕様書の範囲外の質問に回答するためのツール。

以下のような質問を受けた場合に、他のツール(search_endpoints等)ではなくこのツールを使用してください:

  • プランの種類、料金、価格

  • 契約方法、申込方法、支払い方法

  • 各プランで利用可能なデータ範囲・期間

  • プランの変更・アップグレード・解約

  • 無料プランと有料プランの違い

  • データ提供期間・データ格納期間の詳細

  • アカウント・ログインに関する問い合わせ

  • サポート・お問い合わせ先

このツールは正確な情報源として公式ページへのリンクを提供します。

Args: query: ユーザーの質問内容(例: 「Premiumプランの料金は?」「問い合わせ先は?」等)

Returns: 公式ページへの案内リンクとLLM向けの回答指示を含む辞書

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are provided, so the description carries full burden. It discloses that the tool returns a dictionary with official page links and LLM answer instructions, and emphasizes it is an accurate source. However, it does not mention potential limitations like data freshness, but this is adequate for a simple info tool.

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 sample list and Args/Returns sections, and it front-loads the core purpose. It is somewhat lengthy due to the exhaustive list, but each line adds useful guidance and earns its place.

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?

This is a simple tool with one optional parameter and no annotations. The description covers the purpose, usage boundaries, parameter meaning, and return format, making it sufficiently complete. The presence of an output schema and no nested objects reduces the need for additional detail.

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% description coverage, but the description's Args section explains 'query' with examples ('Premiumプランの料金は?'). It adds concrete meaning beyond the schema. However, it doesn't clarify the optional null case or what happens if query is omitted, a minor 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 explicitly states this tool answers questions outside the API specification scope, listing concrete categories such as pricing, contracts, and support. It clearly distinguishes itself from siblings by naming search_endpoints as the alternative, making the 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 guidance: it lists specific question types and says to use this tool instead of other tools like search_endpoints. It also defines the boundary as 'outside API spec', giving clear when-to-use and when-not-to-use context.

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

get_patternA

実装パターン情報を取得する。

Args: pattern_name: パターン名(指定しない場合は全パターンの一覧を返す)

Returns: パターン情報を含む辞書

ParametersJSON Schema
NameRequiredDescriptionDefault
pattern_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It discloses the conditional behavior (if pattern_name is omitted, returns all patterns) and notes the return type as a dictionary. However, it does not mention error conditions, permissions, or side effects, leaving some behavioral gaps.

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 with a clear summary line, Args section, and Returns section. It is free of unnecessary words and every sentence contributes to understanding the tool.

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 single-parameter tool and the presence of an output schema, the description covers the main behavior and parameter semantics effectively. It lacks explicit usage differentiation from siblings and error behavior details, but the essentials are present, making it reasonably complete for a getter tool.

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 no descriptions, so the description's docstring is the only source of parameter meaning. It clearly explains pattern_name and the effect of not specifying it (returns a list of all patterns), which compensates for the 0% schema coverage. This adds meaningful value beyond the 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 with a specific verb and resource: '実装パターン情報を取得する' (gets implementation pattern information). However, it does not explicitly differentiate itself from sibling tools like get_info, so it misses the top score for sibling differentiation.

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 such as get_info or describe_endpoint. It only explains the pattern_name parameter and its default behavior, which is parameter semantics rather than usage context.

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

health_checkA

ヘルスチェック用の簡易Tool。

サーバが正常に動作しているかを確認するためのツールです。

Returns: サーバの状態を示す辞書

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior2/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 of behavioral disclosure. It only mentions that the tool returns a status dictionary, but does not disclose failure behavior (e.g., what happens if the server is down), side effects, or any safety guarantees. This is insufficient given the lack 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 extremely concise, consisting of two short sentences and a Returns section. Every sentence serves a purpose: it states what the tool is for and what it returns. No unnecessary wording.

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 simplicity (zero parameters) and the presence of an output schema, the description covers the core essentials. It could be improved by explaining why one would run a health check or what actions to take based on the result, but these are not strictly necessary for a basic health check tool.

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 tool has no parameters, so the baseline of 4 applies. The description does not need to add parameter information, and it does not introduce any confusion or redundancy.

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 it is a tool for checking whether the server is operating normally, using a specific verb ('確認する') and resource (server health). This distinguishes it from sibling tools like search_endpoints or describe_endpoint, which focus on API metadata rather than server status.

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 usage for health checks ('ヘルスチェック用') but does not explicitly mention alternatives, when not to use it, or provide any exclusion criteria. It provides basic context but lacks the explicit guidance seen in higher-scoring examples.

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

migrate_v1_to_v2A

V1 APIからV2 APIへの移行ガイドを提供する。

V1 APIを利用中のユーザーがV2 APIへ移行する際に、 エンドポイントの対応関係や変更点を案内し、V2の仕様書ページへ誘導します。

Args: v1_endpoint: V1 APIのエンドポイントパスまたはキーワード(例: /v1/prices/daily_quotes, 株価四本値等)。指定しない場合は移行ガイド全体を返す。

Returns: 移行ガイドのMarkdownとV2仕様ページへの誘導情報を含む辞書

ParametersJSON Schema
NameRequiredDescriptionDefault
v1_endpointNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries full responsibility for disclosing behavior. It explains that the tool returns a dictionary containing Markdown and guidance to the V2 spec page, and clarifies the optional parameter behavior. It does not cover auth or rate limits, but for a guide tool this is acceptable.

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 an introductory sentence, usage context, Args, and Returns sections. It is front-loaded with the purpose and does not contain redundant information, though it is slightly verbose.

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 provides sufficient information for an agent to invoke the tool correctly: purpose, parameter semantics, and return format. It does not mention error handling, but given the simple nature of the tool, the provided details are adequate.

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 has zero description coverage for v1_endpoint, but the description compensates fully by defining it as an endpoint path or keyword, providing concrete examples ('/v1/prices/daily_quotes'), and stating the default behavior when omitted. This adds substantial meaning beyond 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?

The description clearly states the tool provides a migration guide from V1 to V2 API, using the specific verb 'provide' and resource 'migration guide'. It distinguishes itself from sibling tools by focusing on endpoint correspondence and redirecting to V2 specification pages, which is a unique purpose.

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 defines the target scenario: 'when users using V1 API migrate to V2 API', and explains the behavior when v1_endpoint is omitted. It does not explicitly mention alternatives, but the sibling tool names make the contextual differentiation clear.

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

search_endpointsA

エンドポイントをキーワードとカテゴリで検索する。

Args: keyword: 検索キーワード(エンドポイント名、パス、説明から検索) category: オプションのカテゴリフィルタ(auth, listed, prices, fins等) api_version: APIバージョン。会話の文脈からV1かV2かを判断して指定する。V1のエンドポイントパス(/v1/...)やV1特有の名前(daily_quotes等)が含まれる場合は'v1'を指定。デフォルトは'v2'。

Returns: 検索結果を含む辞書(該当件数と結果配列)

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordYes
categoryNo
api_versionNov2

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses that search covers endpoint name, path, and description, and describes the return structure as a dictionary with a count and results array. It also explains the api_version decision rule, which is useful 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 a compact structured block with Args and Returns sections, no redundant text, and every clause adds information. It is appropriately sized for the tool's complexity.

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 covers purpose, all three parameters, and return type, and an output schema exists. It is sufficient for a search tool, though minor details like case-sensitivity or sorting are not mentioned, slightly preventing a perfect score.

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 provides only titles and defaults with 0% description coverage. The description fully compensates: keyword scope is specified (searches name/path/description), category includes example filters (auth, listed, prices, fins), and api_version gets a clear decision procedure. This goes well beyond 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?

The description opens with 'エンドポイントをキーワードとカテゴリで検索する' (Search endpoints by keyword and category), clearly stating the action and resource. This distinguishes it from siblings like describe_endpoint and health_check, which serve different purposes.

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 does not explicitly mention alternatives or when not to use this tool. However, it provides detailed guidance on selecting api_version based on conversation context (V1 vs V2), which aids correct invocation. No when-not-to-use or sibling differentiation is present.

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 updatesv1.0.0
    • First observeddescribe_endpoint
    • First observedfetch_spec_page
    • First observedget_info
    • First observedget_pattern
    • First observedhealth_check
    • First observedmigrate_v1_to_v2
    • First observedsearch_endpoints

TDQS

A4.1/5.0

Scored across 7 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: health check, endpoint search, endpoint details, pattern lookup, spec page fetch, migration guide, and FAQ/info routing. No two tools overlap in functionality; the boundaries are explicit and well-documented.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (health_check, search_endpoints, describe_endpoint, get_pattern, fetch_spec_page, migrate_v1_to_v2, get_info). The only minor deviation is 'health_check' being a noun phrase rather than verb_noun, but all are snake_case and clear.

Tool Count5/5

7 tools is well within the ideal 3-15 range and each covers a distinct aspect of an API documentation MCP server: health, search, detail, patterns, page fetching, migration, and general info. The scope is appropriately sized with no redundant tools.

Completeness4/5

The tool surface covers the core needs of exploring an API spec: search, describe, fetch arbitrary pages, and migration guidance. Minor gaps like direct version comparison or credential handling are not necessary since the domain is documentation access, and get_info covers out-of-scope questions.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables programmers to search, download, and access up-to-date API and software documentation through MCP tools, integrating with LLMs like Claude for Desktop.
    20
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables access to the CSMAR financial database via MCP, providing tools for querying financial data, stock data, company info, and more through natural language in compatible clients like Codex and Claude Code.
    6 npm
    2
    MIT