Skip to main content
Glama
shariqriazz

Vertex AI MCP Server

by shariqriazz

Vertex AI MCP 服务器

铁匠徽章

该项目实现了一个模型上下文协议 (MCP) 服务器,它提供了一套全面的工具用于与 Google Cloud 的 Vertex AI Gemini 模型进行交互,专注于编码辅助和一般查询解答。

特征

  • 通过众多 MCP 工具提供对 Vertex AI Gemini 模型的访问。

  • 支持网页搜索基础( answer_query_websearch )和直接知识问答( answer_query_direct )。

  • 可通过环境变量配置模型 ID、温度、流行为、最大输出令牌和重试设置。

  • 默认使用流式 API,以获得更好的响应能力。

  • 包括针对瞬态 API 错误的基本重试逻辑。

  • 应用最少的安全过滤器( BLOCK_NONE )来减少潜在的阻塞(谨慎使用)。

Related MCP server: MCP with Gemini Integration

提供的工具

查询与生成(以人工智能为重点)

  • answer_query_websearch :使用已配置的 Vertex AI 模型(通过 Google 搜索结果增强)回答自然语言查询。

  • answer_query_direct :仅使用配置的 Vertex AI 模型的内部知识来回答自然语言查询。

  • explain_topic_with_docs :通过综合主要来自网络搜索找到的官方文档的信息,为有关特定软件主题的查询提供详细的解释。

  • get_doc_snippets :通过搜索官方文档,提供精确、权威的代码片段或简洁的技术查询答案。

  • generate_project_guidelines :根据指定的技术列表(可选版本)生成结构化的项目指南文档(Markdown),使用网络搜索寻找最佳实践。

文件系统操作

  • read_file_content :读取单个文件的完整内容。

  • read_multiple_files_content :同时读取多个文件的内容。

  • write_file_content :创建一个新文件或用新内容完全覆盖现有文件。

  • edit_file_content :对文本文件进行基于行的编辑,返回差异预览或应用更改。

  • create_directory :创建一个新目录(包括嵌套目录)。

  • list_directory_contents :直接列出指定路径内的文件和目录(非递归)。

  • get_directory_tree :以 JSON 格式获取文件和目录的递归树状视图。

  • move_file_or_directory :移动或重命名文件和目录。

  • search_filesystem :递归搜索与名称模式匹配的文件/目录,并可选择排除。

  • get_filesystem_info :检索有关文件或目录的详细元数据(大小、日期、类型、权限)。

人工智能与文件系统操作相结合

  • save_generate_project_guidelines :根据技术栈生成项目指南,并将结果保存到指定的文件路径。

  • save_doc_snippet :从文档中查找代码片段并将结果保存到指定的文件路径。

  • save_topic_explanation :根据文档生成主题的详细解释,并将结果保存到指定的文件路径。

  • save_answer_query_direct :仅使用内部知识回答查询并将答案保存到指定的文件路径。

  • save_answer_query_websearch :使用网络搜索结果回答查询并将答案保存到指定的文件路径。

(注意:每个工具的输入/输出模式都在src/tools/中的各自文件中定义,并通过 MCP 服务器公开。)

先决条件

  • Node.js(v18+)

  • 包子( npm install -g bun

  • 已启用计费功能的 Google Cloud 项目。

  • GCP 项目中启用了 Vertex AI API。

  • 在您的环境中配置 Google Cloud 身份验证(建议通过gcloud auth application-default login使用应用程序默认凭据,或使用服务帐户密钥)。

设置和安装

  1. **克隆/放置项目:**确保项目文件位于您想要的位置。

  2. 安装依赖项:

    bun install
  3. 配置环境:

    • 在项目根目录中创建一个.env文件(复制.env.example )。

    • 按照.env.example中所述设置必需和可选的环境变量。

      • AI_PROVIDER设置为"vertex""gemini"

      • 如果AI_PROVIDER="vertex" ,则需要GOOGLE_CLOUD_PROJECT

      • 如果AI_PROVIDER="gemini" ,则需要GEMINI_API_KEY

  4. 构建服务器:

    bun run build

    这会将 TypeScript 代码编译为build/index.js

使用方法(独立/NPX)

一旦发布到 npm,您就可以使用npx直接运行此服务器:

# Ensure required environment variables are set (e.g., GOOGLE_CLOUD_PROJECT)
bunx vertex-ai-mcp-server

或者,全局安装:

bun install -g vertex-ai-mcp-server
# Then run:
vertex-ai-mcp-server

**注意:**运行独立版本需要在执行命令之前在 shell 环境中设置必要的环境变量(如GOOGLE_CLOUD_PROJECTGOOGLE_CLOUD_LOCATION 、如果不使用 ADC 则需要设置身份验证凭据)。

通过 Smithery 安装

要通过Smithery自动为 Claude Desktop 安装 Vertex AI Server:

bunx -y @smithery/cli install @shariqriazz/vertex-ai-mcp-server --client claude

与克莱恩一起奔跑

  1. **配置 MCP 设置:**在您的 Cline MCP 设置文件(例如.roo/mcp.json )中添加/更新配置。您可以通过两种主要方式配置命令:

    选项 A:使用节点(直接路径 - 推荐用于开发)

    此方法使用node直接运行已编译的脚本。在开发过程中,当你将代码克隆到本地时,此方法非常有用。

    {
      "mcpServers": {
        "vertex-ai-mcp-server": {
          "command": "node",
          "args": [
            "/full/path/to/your/vertex-ai-mcp-server/build/index.js" // Use absolute path or ensure it's relative to where Cline runs node
          ],
          "env": {
            // --- General AI Configuration ---
            "AI_PROVIDER": "vertex", // "vertex" or "gemini"
            // --- Required (Conditional) ---
            "GOOGLE_CLOUD_PROJECT": "YOUR_GCP_PROJECT_ID", // Required if AI_PROVIDER="vertex"
            // "GEMINI_API_KEY": "YOUR_GEMINI_API_KEY", // Required if AI_PROVIDER="gemini"
            // --- Optional Model Selection ---
            "VERTEX_MODEL_ID": "gemini-2.5-pro-exp-03-25", // If AI_PROVIDER="vertex" (Example override)
            "GEMINI_MODEL_ID": "gemini-2.5-pro-exp-03-25", // If AI_PROVIDER="gemini"
            // --- Optional AI Parameters ---
            "GOOGLE_CLOUD_LOCATION": "us-central1", // Specific to Vertex AI
            "AI_TEMPERATURE": "0.0",
            "AI_USE_STREAMING": "true",
            "AI_MAX_OUTPUT_TOKENS": "65536", // Default from .env.example
            "AI_MAX_RETRIES": "3",
            "AI_RETRY_DELAY_MS": "1000",
            // --- Optional Vertex Authentication ---
            // "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/your/service-account-key.json" // If using Service Account Key for Vertex
          },
          "disabled": false,
          "alwaysAllow": [
             // Add tool names here if you don't want confirmation prompts
             // e.g., "answer_query_websearch"
          ],
          "timeout": 3600 // Optional: Timeout in seconds
        }
        // Add other servers here...
      }
    }
    • **重要提示:**确保args路径正确指向build/index.js文件。使用绝对路径可能更可靠。

    选项 B:使用 NPX(需要将包发布到 npm)

    此方法使用npx自动从 npm 仓库下载并运行服务器包。如果您不想克隆仓库,这种方法非常方便。

    {
      "mcpServers": {
        "vertex-ai-mcp-server": {
          "command": "bunx", // Use bunx
          "args": [
            "-y", // Auto-confirm installation
            "vertex-ai-mcp-server" // The npm package name
          ],
          "env": {
            // --- General AI Configuration ---
            "AI_PROVIDER": "vertex", // "vertex" or "gemini"
            // --- Required (Conditional) ---
            "GOOGLE_CLOUD_PROJECT": "YOUR_GCP_PROJECT_ID", // Required if AI_PROVIDER="vertex"
            // "GEMINI_API_KEY": "YOUR_GEMINI_API_KEY", // Required if AI_PROVIDER="gemini"
            // --- Optional Model Selection ---
            "VERTEX_MODEL_ID": "gemini-2.5-pro-exp-03-25", // If AI_PROVIDER="vertex" (Example override)
            "GEMINI_MODEL_ID": "gemini-2.5-pro-exp-03-25", // If AI_PROVIDER="gemini"
            // --- Optional AI Parameters ---
            "GOOGLE_CLOUD_LOCATION": "us-central1", // Specific to Vertex AI
            "AI_TEMPERATURE": "0.0",
            "AI_USE_STREAMING": "true",
            "AI_MAX_OUTPUT_TOKENS": "65536", // Default from .env.example
            "AI_MAX_RETRIES": "3",
            "AI_RETRY_DELAY_MS": "1000",
            // --- Optional Vertex Authentication ---
            // "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/your/service-account-key.json" // If using Service Account Key for Vertex
          },
          "disabled": false,
          "alwaysAllow": [
             // Add tool names here if you don't want confirmation prompts
             // e.g., "answer_query_websearch"
          ],
          "timeout": 3600 // Optional: Timeout in seconds
        }
        // Add other servers here...
      }
    }
    • 确保env块中的环境变量设置正确,要么与.env匹配,要么在此处明确定义。请从实际的 JSON 文件中删除注释。

  2. 重新启动/重新加载 Cline: Cline 应该检测配置更改并启动服务器。

  3. **使用工具:**您现在可以通过 Cline 使用大量工具列表。

发展

  • 观看模式: bun run watch

  • 绒毛: bun run lint

  • 格式: bun run format

执照

该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅LICENSE文件。

Available Tools

20 tools
answer_query_directA

Answers a natural language query using only the internal knowledge of the configured Vertex AI model (gemini-2.5-pro-exp-03-25). Does not use web search. Requires a 'query' string.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe natural language question to answer using only the model's internal knowledge.

TDQS

A4.2/5.0
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. It discloses that the tool uses a specific model (gemini-2.5-pro-exp-03-25) and restricts to internal knowledge, which adds useful context beyond basic functionality. However, it lacks details on rate limits, error handling, or output format, leaving behavioral gaps for a tool with no 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 front-loaded with the core purpose in the first sentence, followed by critical constraints, and every sentence earns its place by specifying model details and usage rules. It is appropriately sized with zero 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 moderate complexity (single parameter, no output schema), the description is mostly complete: it covers purpose, constraints, and model specifics. However, without annotations or output schema, it could benefit from more behavioral details like response format or limitations, slightly reducing completeness.

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 the schema already documents the single 'query' parameter thoroughly. The description adds no additional meaning beyond what the schema provides (e.g., no examples or edge cases), meeting the baseline of 3 for high schema coverage without extra value.

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 specific action ('Answers a natural language query') and resource ('using only the internal knowledge of the configured Vertex AI model'), distinguishing it from sibling tools like answer_query_websearch by explicitly noting it 'Does not use web search.' This provides a precise verb+resource combination with clear differentiation.

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 explicitly states when to use this tool ('using only the internal knowledge') and when not to use it ('Does not use web search'), with a clear alternative named (answer_query_websearch as a sibling tool). This provides explicit guidance on context and exclusions.

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

answer_query_websearchB

Answers a natural language query using the configured Vertex AI model (gemini-2.5-pro-exp-03-25) enhanced with Google Search results for up-to-date information. Requires a 'query' string.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe natural language question to answer using web search.

TDQS

B3.4/5.0
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. It discloses key behavioral traits: uses a specific Vertex AI model (gemini-2.5-pro-exp-03-25), incorporates web search for up-to-date info, and requires a query string. However, it lacks details on rate limits, authentication needs, output format, or potential errors. For a tool with no annotations, this is a moderate disclosure but misses important operational context.

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 appropriately sized and front-loaded, with the core purpose stated in the first sentence. It efficiently conveys the tool's function, model, and enhancement in two concise sentences. There's no wasted text, though it could be slightly more structured by separating usage notes. Overall, it's clear and to the point.

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 the tool's moderate complexity (AI + web search integration), no annotations, and no output schema, the description is somewhat complete but has gaps. It covers the basic operation and model specifics but omits details on response format, error handling, or limitations. For a tool with rich functionality and no structured output, more context would improve completeness.

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%, with the single parameter 'query' fully documented in the schema as 'The natural language question to answer using web search.' The description adds minimal value beyond this, only restating that it requires a 'query' string. Given high schema coverage, the baseline score of 3 is appropriate, as the description doesn't significantly enhance parameter understanding.

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: 'Answers a natural language query using the configured Vertex AI model enhanced with Google Search results for up-to-date information.' It specifies the verb ('answers'), resource ('natural language query'), and key mechanism (AI model + web search). However, it doesn't explicitly distinguish from its sibling 'answer_query_direct', which likely answers queries without web search, so it misses full 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?

The description implies usage context by mentioning 'enhanced with Google Search results for up-to-date information,' suggesting this tool is for queries needing current data. However, it doesn't explicitly state when to use this vs. alternatives like 'answer_query_direct' or other query tools, nor does it provide exclusions or prerequisites beyond the required query parameter. This leaves usage somewhat implied rather than clearly guided.

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

create_directoryA

Create a new directory or ensure a directory exists in the workspace filesystem. Can create multiple nested directories in one operation (like mkdir -p). If the directory already exists, this operation will succeed silently. Perfect for setting up directory structures for projects.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe path of the directory to create (relative to the workspace directory). Can include nested paths.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: the mkdir -p capability for nested directories, idempotent behavior (succeeds silently if directory exists), and workspace-relative path context. It doesn't mention permissions, error conditions, or rate limits, but covers the essential operation characteristics.

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?

Three sentences with zero waste - first states core functionality, second explains mkdir -p behavior and idempotency, third provides usage context. Every sentence earns its place and the description is appropriately sized for a single-parameter 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?

For a single-parameter mutation tool with no annotations and no output schema, the description does well by explaining the mkdir -p behavior, idempotency, and project setup context. It could mention error conditions or return values, but covers the essential operation adequately given the tool's complexity.

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 the schema already documents the 'path' parameter thoroughly. The description adds some context about nested paths and workspace-relative positioning, but doesn't provide additional syntax or format details beyond what the schema provides. Baseline 3 is appropriate when schema does the heavy lifting.

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 specific action ('create a new directory or ensure a directory exists') and resource ('workspace filesystem'), distinguishing it from sibling tools like 'get_directory_tree' or 'list_directory_contents' which are read-only. It also specifies the mkdir -p behavior for nested directories.

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 clear context about when to use this tool ('perfect for setting up directory structures for projects') and mentions the idempotent behavior when directories already exist. However, it doesn't explicitly contrast with alternatives like 'move_file_or_directory' or specify when NOT to use it.

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

edit_file_contentA

Make line-based edits to a text file in the workspace filesystem. Each edit attempts to replace an exact match of 'oldText' with 'newText'. If no exact match is found, it attempts a line-by-line match ignoring leading/trailing whitespace. Indentation of the first line is preserved, and relative indentation of subsequent lines is attempted. Returns a git-style diff showing the changes made (or previewed if dryRun is true).

ParametersJSON Schema
NameRequiredDescriptionDefault
dryRunNoIf true, preview changes using git-style diff format without saving.
editsYesAn array of edit operations to apply sequentially.
pathYesThe path of the file to edit (relative to the workspace directory).

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: the two-stage matching algorithm (exact then whitespace-insensitive), indentation preservation rules, and the return format (git-style diff). It also clarifies the dryRun behavior. Missing details include error handling for non-existent files or permission issues.

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 efficiently structured in three sentences: first states purpose, second explains the editing algorithm, third covers return behavior and dryRun. Every sentence adds essential information with zero redundant content, making it easy to parse.

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 mutation tool with no annotations and no output schema, the description provides substantial context: behavioral algorithm, return format, and dryRun preview. It adequately covers the core functionality. Minor gaps include lack of error scenarios or side effects, but overall it's sufficiently complete for an agent to use correctly.

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%, providing clear documentation for all parameters. The description adds some semantic context about how 'oldText' and 'newText' are used in the matching algorithm and indentation preservation, but doesn't significantly enhance understanding beyond what the schema already explains. Baseline 3 is appropriate given high schema coverage.

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 specific action ('Make line-based edits to a text file'), identifies the resource ('workspace filesystem'), and distinguishes from siblings like 'write_file_content' (which presumably creates/overwrites entire files) and 'read_file_content' (which only reads). The phrase 'line-based edits' provides precise differentiation.

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 implies usage context through 'line-based edits' and 'text file', suggesting this is for modifying existing files rather than creating new ones. However, it doesn't explicitly state when to use this versus 'write_file_content' (for full file replacement) or other editing alternatives, nor does it mention prerequisites like file existence.

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

explain_topic_with_docsA

Provides a detailed explanation for a query about a specific software topic by synthesizing information primarily from official documentation found via web search. Focuses on comprehensive answers, context, and adherence to documented details. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25) with Google Search. Requires 'topic' and 'query'.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe specific question to answer based on the documentation.
topicYesThe software/library/framework topic (e.g., 'React Router', 'Python requests').

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden. It discloses key behavioral traits: uses Vertex AI model (gemini-2.5-pro-exp-03-25) with Google Search, focuses on comprehensive answers and adherence to documented details. However, it doesn't mention rate limits, authentication needs, or what happens when documentation is unavailable.

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 appropriately sized (3 sentences) and front-loaded with the core purpose. Every sentence adds value: first states purpose, second specifies approach and focus, third mentions technical implementation and requirements. Could be slightly more concise by combining some elements.

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 tool with 2 parameters, 100% schema coverage, but no annotations and no output schema, the description is adequate but has gaps. It explains what the tool does and its approach, but doesn't describe return values or error conditions. The technical implementation details (Vertex AI model) are helpful context.

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%, providing good parameter documentation. The description adds minimal value beyond the schema - it mentions 'topic' and 'query' are required but doesn't elaborate on their semantics or relationships. Baseline 3 is appropriate when schema does the heavy lifting.

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 with specific verbs ('Provides a detailed explanation', 'synthesizing information') and resources ('official documentation found via web search', 'software topic'). It distinguishes from siblings by focusing on documentation-based explanations rather than direct answers or file operations.

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 clear context for when to use this tool ('explanation for a query about a specific software topic', 'synthesizing information primarily from official documentation'), but doesn't explicitly state when NOT to use it or name specific alternatives among the many sibling tools. It implies usage for documentation-focused explanations.

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

generate_project_guidelinesA

Generates a structured project guidelines document (e.g., Markdown) based on a specified list of technologies and versions (tech stack). Uses web search to find the latest official documentation, style guides, and best practices for each component and synthesizes them into actionable rules and recommendations. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25) with Google Search. Requires 'tech_stack'.

ParametersJSON Schema
NameRequiredDescriptionDefault
tech_stackYesAn array of strings specifying the project's technologies and versions (e.g., ['React 18.3', 'TypeScript 5.2', 'Node.js 20.10', 'Express 5.0', 'PostgreSQL 16.1']).

TDQS

A3.8/5.0
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. It discloses key behaviors: uses web search for latest official docs, style guides, best practices; uses Vertex AI model (gemini-2.5-pro-exp-03-25) with Google Search; generates actionable rules and recommendations. However, it lacks details on rate limits, authentication needs, output format specifics (e.g., Markdown structure), or potential errors. For a tool with no annotations, this is a moderate level of transparency.

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 appropriately sized and front-loaded: the first sentence states the core purpose, followed by details on method and requirements. Every sentence adds value (e.g., explaining the use of web search and AI model). It could be slightly more concise by combining some clauses, but it avoids redundancy and waste.

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

Completeness3/5

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

Given no annotations, no output schema, and a single parameter with full schema coverage, the description is moderately complete. It covers the purpose, method, and input requirement adequately. However, for a tool that performs web search and AI synthesis, it lacks details on output format, error handling, or performance considerations, which could be important for an agent to use it correctly.

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%, with the parameter 'tech_stack' well-described in the schema as an array of strings for technologies and versions. The description adds minimal semantics beyond the schema, only reiterating that it's required and specifying the input as 'a specified list of technologies and versions.' This meets the baseline of 3 since the schema does the heavy lifting.

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: 'Generates a structured project guidelines document based on a specified list of technologies and versions.' It specifies the output format (Markdown), the input (tech stack), and the method (web search for official docs, style guides, best practices, synthesis via Vertex AI). This distinguishes it from all sibling tools, which are mostly about querying, file operations, or saving outputs, not generating guidelines from tech stacks.

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 implies usage context: when you need project guidelines for a given tech stack, using web search and AI synthesis. It explicitly states 'Requires tech_stack' as a prerequisite. However, it does not specify when not to use it (e.g., vs. manual research or other tools) or name alternatives among siblings, though the sibling list includes no direct alternatives for guideline generation.

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

get_directory_treeA

Get a recursive tree view of files and directories within the workspace filesystem as a JSON structure. Each entry includes 'name', 'type' (file/directory), and 'children' (an array) for directories. Files have no 'children' array. The output is formatted JSON text. Useful for understanding the complete structure of a project directory.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe root path for the directory tree (relative to the workspace directory).

TDQS

A3.8/5.0
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: the recursive nature, JSON output format, and structure of entries (name, type, children). However, it doesn't mention performance considerations (e.g., depth limits, large directories), error handling, or workspace boundaries.

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 efficiently structured in three sentences: first states the core functionality, second details the output structure, third provides usage context. Every sentence adds value with zero redundant 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?

For a single-parameter read operation with no annotations and no output schema, the description provides good coverage of what the tool does and returns. It explains the output structure in detail, which compensates for the missing output schema. However, it could mention recursion depth limits or performance considerations for completeness.

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 the schema already documents the single 'path' parameter. The description doesn't add any parameter-specific information beyond what's in the schema (e.g., path format examples, default behavior). Baseline 3 is appropriate when schema does the heavy lifting.

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 specific action ('Get a recursive tree view'), resource ('files and directories within the workspace filesystem'), and output format ('JSON structure'). It distinguishes from siblings like 'list_directory_contents' by specifying the recursive, hierarchical nature and JSON output format.

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 context ('useful for understanding the complete structure of a project directory') but doesn't explicitly state when to use this tool versus alternatives like 'list_directory_contents' or 'search_filesystem'. No exclusions or prerequisites are mentioned.

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

get_doc_snippetsA

Provides precise, authoritative code snippets or concise answers for technical queries by searching official documentation. Focuses on delivering exact solutions without unnecessary explanation. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25) with Google Search. Requires 'topic' and 'query'.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_examplesNoOptional. Whether to include additional usage examples beyond the primary snippet. Defaults to true.
queryYesThe specific question or use case to find a snippet or concise answer for.
topicYesThe software/library/framework topic (e.g., 'React Router', 'Python requests', 'PostgreSQL 14').
versionNoOptional. Specific version of the software to target (e.g., '6.4', '2.28.2'). If provided, only documentation for this version will be used.

TDQS

A3.9/5.0
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 of behavioral disclosure. It describes the tool's focus ('precise, authoritative', 'without unnecessary explanation'), method ('searching official documentation', 'uses Vertex AI model with Google Search'), and requirement ('Requires topic and query'). However, it lacks details on rate limits, error handling, or response format, which are important for a search tool.

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, with three sentences that each earn their place: the first states the purpose, the second details the method, and the third specifies requirements. There is no wasted text, making it efficient and easy to parse.

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 the tool's complexity (search with AI model), no annotations, and no output schema, the description is somewhat complete but has gaps. It covers purpose and method well, but lacks details on behavioral traits like rate limits or response structure, which could hinder an agent's ability to use it effectively in all contexts.

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 the schema already documents all parameters thoroughly. The description mentions 'topic' and 'query' as required, adding minimal value beyond the schema. It does not explain parameter interactions or provide additional context, 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 purpose with specific verbs ('provides', 'searching') and resources ('code snippets', 'concise answers', 'official documentation'). It distinguishes from siblings like 'answer_query_direct' or 'explain_topic_with_docs' by emphasizing precision, authority, and lack of unnecessary explanation.

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 clear context for when to use this tool ('for technical queries', 'searching official documentation'), but does not explicitly state when not to use it or name alternatives among siblings. It implies usage for exact solutions without explanation, which helps differentiate from more verbose tools.

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

get_filesystem_infoA

Retrieve detailed metadata about a file or directory within the workspace filesystem. Returns comprehensive information including size (bytes), creation time, last modified time, last accessed time, type (file/directory), and permissions (octal string). This tool is perfect for understanding file characteristics without reading the actual content.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe path of the file or directory to get info for (relative to the workspace directory).

TDQS

A4/5.0
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 the tool's read-only nature ('without reading the actual content') and lists specific metadata returned (size, times, type, permissions), which helps understand behavior. However, it doesn't mention error conditions, permissions needed, or rate limits.

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 efficiently structured in two sentences: the first states purpose and scope, the second lists returned metadata and usage context. Every sentence adds value with zero redundant 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?

For a single-parameter read operation with no output schema, the description provides good context: it explains what metadata is returned and the tool's purpose. However, without annotations or output schema, it could benefit from more detail on error handling or exact return format.

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 the schema already documents the 'path' parameter thoroughly. The description adds no additional parameter information beyond what's in the schema, maintaining the baseline score of 3 for adequate but not enhanced coverage.

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 verb 'retrieve' and resource 'detailed metadata about a file or directory', specifying it's within the workspace filesystem. It distinguishes from siblings like 'read_file_content' (which reads actual content) and 'get_directory_tree' (which shows structure rather than metadata).

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 clear context: 'for understanding file characteristics without reading the actual content', which implicitly differentiates it from content-reading tools. However, it doesn't explicitly mention when NOT to use it or name specific alternatives among the siblings.

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

list_directory_contentsA

Get a detailed listing of all files and directories directly within a specified path in the workspace filesystem. Results clearly distinguish between files and directories with [FILE] and [DIR] prefixes. This tool is essential for understanding directory structure and finding specific files within a directory. Does not list recursively.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe path of the directory to list (relative to the workspace directory).

TDQS

A4.1/5.0
Behavior4/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 effectively describes key behavioral traits: the tool returns a detailed listing with [FILE] and [DIR] prefixes for clear distinction, operates on the workspace filesystem, and does not list recursively. It doesn't mention error conditions, permissions, or performance characteristics, but provides solid operational context.

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 appropriately sized with three sentences that each add value: the core functionality, output format details, and scope limitation. It's front-loaded with the main purpose. The third sentence ('This tool is essential...') could be considered slightly redundant but still provides useful context.

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 single-parameter tool with no annotations and no output schema, the description provides good coverage of what the tool does, how results are formatted, and its scope limitations. It doesn't describe the exact return format or error conditions, but given the tool's relative simplicity and clear behavioral description, it's reasonably complete.

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% description coverage with a clear parameter description for 'path'. The description adds no additional parameter information beyond what's in the schema. According to scoring rules, when schema_description_coverage is high (>80%), the baseline is 3 even with no param info in description.

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 specific action ('Get a detailed listing'), resource ('files and directories'), and scope ('directly within a specified path'). It distinguishes from sibling tools like 'get_directory_tree' (which likely lists recursively) by explicitly stating 'Does not list recursively' and from 'search_filesystem' by focusing on directory listing rather than searching.

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 clear context for when to use this tool ('essential for understanding directory structure and finding specific files within a directory') and distinguishes it from recursive alternatives by stating 'Does not list recursively'. However, it doesn't explicitly name alternative tools or provide when-not-to-use guidance beyond the non-recursive limitation.

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

move_file_or_directoryA

Move or rename files and directories within the workspace filesystem. Can move items between directories and rename them in a single operation. If the destination path already exists, the operation will likely fail (OS-dependent).

ParametersJSON Schema
NameRequiredDescriptionDefault
destinationYesThe new path for the file or directory (relative to the workspace directory).
sourceYesThe current path of the file or directory to move (relative to the workspace directory).

TDQS

A4/5.0
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 of behavioral disclosure. It usefully adds context about the operation potentially failing if the destination exists (OS-dependent), which is valuable beyond basic function. However, it lacks details on permissions needed, whether the operation is reversible, or what happens on failure beyond 'likely fail'.

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 efficiently structured in three sentences: first states the core function, second elaborates on capabilities, third provides important behavioral caveat. Every sentence adds value with zero wasted words, making it easy to parse.

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 mutation tool with no annotations and no output schema, the description does well by covering the core function, dual capability, and a key failure scenario. However, it could be more complete by mentioning permissions, return values, or error handling specifics, given the tool's potential for destructive changes.

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% description coverage, clearly documenting both parameters (source and destination). The description adds no additional parameter semantics beyond what the schema provides, such as path format examples or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.

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 specific action ('Move or rename files and directories') and the resource ('within the workspace filesystem'), distinguishing it from sibling tools like create_directory, edit_file_content, and list_directory_contents. It explicitly mentions the dual functionality of moving between directories and renaming in one operation.

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 clear context for when to use this tool (moving/renaming files/directories) and implicitly distinguishes it from tools like create_directory (for creation) or edit_file_content (for content modification). However, it does not explicitly state when NOT to use it or name specific alternatives for edge cases.

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

read_file_contentA

Read the complete contents of a file from the workspace filesystem. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file within the workspace.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe path of the file to read (relative to the workspace directory).

TDQS

A4.4/5.0
Behavior4/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 effectively describes key behaviors: it handles 'various text encodings' and provides 'detailed error messages if the file cannot be read.' However, it doesn't mention potential side effects like memory usage for large files or performance implications, which could be relevant for an agent.

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 that are front-loaded with the core purpose, followed by behavioral details and usage guidance. Every phrase adds value without redundancy, making it efficient and well-structured for quick comprehension.

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 low complexity (single parameter, no output schema, no annotations), the description is largely complete. It covers purpose, behavior, and usage. However, without an output schema, it doesn't describe the return format (e.g., string content, encoding details), which is a minor gap for a read operation.

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% description coverage, with the 'path' parameter clearly documented as 'The path of the file to read (relative to the workspace directory).' The description adds no additional parameter semantics beyond what the schema provides, so it meets the baseline of 3 for high schema coverage.

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 specific action ('Read the complete contents of a file') and resource ('from the workspace filesystem'), distinguishing it from siblings like 'read_multiple_files_content' (single vs. multiple files) and 'write_file_content' (read vs. write). It precisely defines the tool's scope without ambiguity.

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 explicitly states when to use this tool ('when you need to examine the contents of a single file within the workspace'), providing clear context. It implicitly distinguishes from alternatives like 'read_multiple_files_content' (single vs. multiple) and 'list_directory_contents' (content vs. listing), though it doesn't name them directly.

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

read_multiple_files_contentA

Read the contents of multiple files simultaneously from the workspace filesystem. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathsYesAn array of file paths to read (relative to the workspace directory).

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: it's a read operation (implied by 'Read'), describes error handling ('Failed reads for individual files won't stop the entire operation'), and mentions the return format ('Each file's content is returned with its path as a reference'). However, it doesn't specify permission requirements or rate limits.

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?

Three sentences with zero waste - first states purpose, second provides usage guidance, third discloses error behavior. Each sentence earns its place by adding distinct value. The description is appropriately sized and front-loaded with the core functionality.

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 read operation with no annotations and no output schema, the description provides good coverage of purpose, usage context, and error behavior. However, it doesn't specify the exact return format structure or whether there are any limitations on the number/size of files that can be read simultaneously.

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 the schema already fully documents the single 'paths' parameter. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for high schema coverage.

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 verb ('Read') and resource ('contents of multiple files'), specifies the source ('workspace filesystem'), and distinguishes it from the sibling 'read_file_content' by emphasizing simultaneous reading of multiple files. It provides specific purpose beyond just the tool name.

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?

Explicitly states when to use this tool ('more efficient than reading files one by one when you need to analyze or compare multiple files') and provides a clear alternative ('reading files one by one'). It also mentions the sibling tool 'read_file_content' implicitly through this comparison.

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

save_answer_query_directA

Answers a natural language query using only the internal knowledge of the configured Vertex AI model (gemini-2.5-pro-exp-03-25), does not use web search, and saves the answer to a file. Requires 'query' and 'output_path'.

ParametersJSON Schema
NameRequiredDescriptionDefault
output_pathYesThe relative path where the generated answer should be saved.
queryYesThe natural language question to answer using only the model's internal knowledge.

TDQS

A4.1/5.0
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: the tool answers queries using only the model's internal knowledge (no web search) and saves to a file. However, it lacks details on error handling, file format, permissions needed, or rate limits, which are important for a write operation.

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 front-loaded and concise, with two sentences that efficiently convey purpose, constraints, and requirements. Every word earns its place, avoiding redundancy. The structure is clear: what it does, how it differs, and what it needs.

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 the tool's complexity (a write operation with no annotations and no output schema), the description is moderately complete. It covers the core functionality and constraints but lacks details on behavioral aspects like error cases or output format. For a tool that saves files, more context on file handling would be beneficial.

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 the schema already documents both parameters ('query' and 'output_path') adequately. The description adds minimal value by reinforcing that 'query' is natural language and 'output_path' is for saving, but doesn't provide additional syntax or format details beyond the schema. Baseline 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 purpose with specific verbs ('answers', 'saves') and resources ('natural language query', 'file'), distinguishing it from siblings like 'answer_query_direct' (which doesn't save) and 'save_answer_query_websearch' (which uses web search). It explicitly mentions using only the model's internal knowledge, which is a key differentiator.

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 on when to use this tool: for answering queries with the model's internal knowledge and saving to a file. It implicitly contrasts with 'answer_query_websearch' (which uses web search) and 'answer_query_direct' (which doesn't save), making alternatives clear. The 'Requires' statement sets prerequisites.

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

save_answer_query_websearchA

Answers a natural language query using Google Search results and saves the answer to a file. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25). Requires 'query' and 'output_path'.

ParametersJSON Schema
NameRequiredDescriptionDefault
output_pathYesThe relative path where the generated answer should be saved.
queryYesThe natural language question to answer using web search.

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden. It discloses key behavioral traits: it uses Google Search, employs a specific Vertex AI model, and saves to a file. However, it doesn't mention potential rate limits, authentication needs, file format, or what happens if the file already exists.

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 efficiently structured in two sentences: the first states the core functionality, the second specifies requirements. Every word serves a purpose with zero wasted information, making it easy to parse quickly.

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 tool with 2 parameters, 100% schema coverage, and no output schema, the description is adequate but has gaps. It explains the what and how but lacks details on behavioral constraints (e.g., search limits), error handling, or output format, which would be helpful given the mutation nature (saving files).

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 the schema already fully documents both parameters. The description adds minimal value beyond the schema by mentioning the parameters are required, but doesn't provide additional semantic context like query formatting examples or output_path conventions.

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 specific action ('answers a natural language query using Google Search results and saves the answer to a file'), identifies the resource (query results), and distinguishes from siblings like 'answer_query_websearch' (which doesn't save) and 'save_answer_query_direct' (which doesn't use web search).

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 clear context for when to use this tool (to answer queries with web search and save results), but doesn't explicitly state when not to use it or name alternatives like 'answer_query_websearch' for non-saving scenarios or 'save_answer_query_direct' for direct answering without web search.

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

save_doc_snippetA

Provides precise code snippets or concise answers for technical queries by searching official documentation and saves the result to a file. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25) with Google Search. Requires 'topic', 'query', and 'output_path'.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_examplesNoOptional. Whether to include additional usage examples beyond the primary snippet. Defaults to true.
output_pathYesThe relative path where the generated snippet(s) should be saved (e.g., 'snippets/react-hook-example.ts').
queryYesThe specific question or use case to find a snippet or concise answer for.
topicYesThe software/library/framework topic (e.g., 'React Router', 'Python requests', 'PostgreSQL 14').
versionNoOptional. Specific version of the software to target (e.g., '6.4', '2.28.2'). If provided, only documentation for this version will be used.

TDQS

A3.8/5.0
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 of behavioral disclosure. It reveals the tool uses Vertex AI model 'gemini-2.5-pro-exp-03-25' with Google Search, which is valuable context beyond basic functionality. However, it doesn't disclose important behavioral traits like rate limits, authentication requirements, error handling, or what happens if the file already exists.

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 appropriately sized with two sentences that efficiently convey the core functionality and key implementation details. It's front-loaded with the main purpose, though the second sentence could be slightly more concise. Every sentence earns its place by adding value.

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 the tool's complexity (AI-powered documentation search with file output) and lack of both annotations and output schema, the description is moderately complete. It covers the what and how but lacks important contextual details about the output format, error conditions, and behavioral constraints that would help an agent use it correctly.

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 the schema already fully documents all 5 parameters. The description mentions the three required parameters ('topic', 'query', and 'output_path') but adds no additional semantic meaning beyond what the schema provides. The baseline score of 3 is appropriate when the schema does the heavy lifting.

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 with specific verbs ('Provides precise code snippets or concise answers', 'saves the result to a file') and resources ('searching official documentation'). It distinguishes from siblings like 'get_doc_snippets' (which doesn't save) and 'answer_query_direct' (which doesn't use documentation search).

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 clear context for when to use this tool ('for technical queries by searching official documentation and saves the result to a file'), but doesn't explicitly state when NOT to use it or name specific alternatives. It implies usage for documentation-based snippet generation with file saving, but lacks explicit exclusions.

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

save_generate_project_guidelinesA

Generates comprehensive project guidelines based on a tech stack using web search and saves the result to a specified file path. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25). Requires 'tech_stack' and 'output_path'.

ParametersJSON Schema
NameRequiredDescriptionDefault
output_pathYesThe relative path where the generated guidelines Markdown file should be saved (e.g., 'docs/PROJECT_GUIDELINES.md').
tech_stackYesAn array of strings specifying the project's technologies, optionally with versions (e.g., ['React', 'TypeScript 5.x', 'Node.js', 'Express 4.18', 'PostgreSQL 16.x']). If no version is specified, the latest stable version will be assumed.

TDQS

A3.9/5.0
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 of behavioral disclosure. It mentions the use of web search and the specific Vertex AI model, which adds valuable context beyond basic functionality. However, it doesn't disclose important behavioral aspects like rate limits, authentication requirements, error handling, or what happens if the file path already exists.

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 perfectly concise with three sentences that each earn their place: first states the core functionality, second specifies the AI model, third lists required parameters. No wasted words and front-loaded with the most important information.

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 tool with no annotations and no output schema that performs both generation and file operations, the description provides adequate basic information but lacks completeness. It doesn't describe the output format (though mentions Markdown in the schema), error conditions, or what constitutes 'comprehensive' guidelines. The model specification is helpful but doesn't fully compensate for missing behavioral context.

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?

With 100% schema description coverage, the schema already fully documents both parameters. The description mentions the parameters are required but doesn't add meaningful semantic context beyond what's in the schema descriptions (e.g., the schema already explains tech_stack format and output_path examples).

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 with specific verbs ('generates comprehensive project guidelines', 'saves the result') and resources ('based on a tech stack', 'to a specified file path'). It distinguishes from sibling tools like 'generate_project_guidelines' by explicitly mentioning the saving functionality and web search component.

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 clear context for when to use this tool (generating guidelines from tech stack and saving them), but doesn't explicitly state when NOT to use it or mention alternatives like 'generate_project_guidelines' (which appears to be a similar tool without saving) or 'save_topic_explanation' (which saves different content).

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

save_topic_explanationC

Provides a detailed explanation for a query about a specific software topic using official documentation found via web search and saves the result to a file. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25). Requires 'topic', 'query', and 'output_path'.

ParametersJSON Schema
NameRequiredDescriptionDefault
output_pathYesThe relative path where the generated explanation should be saved (e.g., 'explanations/react-router-hooks.md').
queryYesThe specific question to answer based on the documentation.
topicYesThe software/library/framework topic (e.g., 'React Router', 'Python requests').

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the tool 'uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25)' which adds useful context about the implementation. However, it doesn't describe important behavioral aspects like whether this is a read-only or write operation (though 'saves' implies writing), what happens if the file already exists, error conditions, rate limits, or authentication needs. The description provides some behavioral 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 reasonably concise at two sentences. The first sentence clearly states the core functionality, and the second sentence specifies requirements. There's minimal wasted text, though it could be slightly more structured (e.g., separating functionality from requirements more clearly). Every sentence earns its place by adding value.

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 the tool's moderate complexity (web search + AI explanation + file saving) with no annotations and no output schema, the description provides basic functionality but lacks important context. It doesn't describe the output format, error handling, or how the web search and AI model interact. For a tool that performs multiple operations (search, generate, save), more comprehensive behavioral description would be helpful, though the core purpose is adequately stated.

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 the schema already fully documents all three parameters. The description mentions the three required parameters by name but doesn't add meaningful semantic context beyond what's in the schema descriptions. It doesn't explain relationships between parameters or provide additional usage examples. The baseline of 3 is appropriate when the schema does the heavy lifting.

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: 'Provides a detailed explanation for a query about a specific software topic using official documentation found via web search and saves the result to a file.' It includes specific verbs (provides explanation, saves to file) and resources (software topic, official documentation). However, it doesn't explicitly differentiate from similar siblings like 'explain_topic_with_docs' or 'save_answer_query_websearch' beyond mentioning the saving aspect.

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 minimal usage guidance. It states 'Requires topic, query, and output_path' which indicates parameter requirements but doesn't explain when to use this tool versus alternatives like 'explain_topic_with_docs' (which may not save) or 'save_answer_query_websearch' (which may not focus on official documentation). No explicit when/when-not guidance or comparison to sibling tools is provided.

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

search_filesystemA

Recursively search for files and directories within the workspace filesystem matching a pattern in their name. Searches through all subdirectories from the starting path. The search is case-insensitive and matches partial names. Returns full paths (relative to workspace) to all matching items. Supports excluding paths using glob patterns.

ParametersJSON Schema
NameRequiredDescriptionDefault
excludePatternsNoAn array of glob patterns (e.g., 'node_modules', '*.log') to exclude from the search.
pathYesThe starting directory path for the search (relative to the workspace directory).
patternYesThe case-insensitive text pattern to search for in file/directory names.

TDQS

A4/5.0
Behavior4/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 effectively describes key traits: the recursive nature, case-insensitive and partial matching, return format ('full paths relative to workspace'), and support for exclusion patterns. However, it lacks details on performance (e.g., speed, depth limits), error handling, or workspace-specific constraints, which would be valuable for an agent.

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 front-loaded with the core purpose in the first sentence, followed by supporting details in a logical flow (search behavior, matching rules, return values, exclusions). Each sentence adds unique value without redundancy, and the length is appropriate for the tool's complexity, making it efficient and easy to parse.

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 moderate complexity (3 parameters, recursive operation), no annotations, and no output schema, the description is largely complete. It covers purpose, behavior, and parameters well, but lacks output details (e.g., format examples, pagination) and error scenarios, which would help an agent handle results and failures more effectively.

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%, with clear documentation for all parameters in the input schema. The description adds minimal value beyond the schema, mentioning 'exclude paths using glob patterns' (implied by 'excludePatterns') and reinforcing case-insensitivity (already in schema for 'pattern'). No additional syntax or format details are provided, 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 purpose with specific verbs ('recursively search for files and directories') and resources ('within the workspace filesystem'), distinguishing it from siblings like 'list_directory_contents' (non-recursive listing) and 'get_directory_tree' (structured tree output). It specifies the matching criteria ('pattern in their name') and scope ('all subdirectories from the starting path').

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 through its functional details (e.g., 'recursively search' vs. non-recursive siblings) but does not explicitly state when to use this tool versus alternatives like 'list_directory_contents' (for simple listing) or 'get_directory_tree' (for hierarchical views). No explicit exclusions or prerequisites are mentioned, leaving usage context inferred rather than guided.

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

write_file_contentA

Create a new file or completely overwrite an existing file in the workspace filesystem with new content. Use with caution as it will overwrite existing files without warning. Handles text content with proper encoding.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYesThe full content to write to the file.
pathYesThe path of the file to write (relative to the workspace directory).

TDQS

A4.2/5.0
Behavior4/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: it can create or overwrite files, overwrites without warning (destructive behavior), and handles text content with proper encoding. It lacks details on permissions, error handling, or response format, but covers essential safety and scope.

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 front-loaded with the core purpose and caution, using three concise sentences with zero waste. Each sentence earns its place: the first states the action, the second warns of risks, and the third clarifies content handling.

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 (destructive file operations) and lack of annotations or output schema, the description is mostly complete. It covers purpose, risks, and content type, but could benefit from mentioning response behavior or error cases. It adequately compensates for the missing structured 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?

Schema description coverage is 100%, so the schema already documents both parameters ('path' and 'content') adequately. The description adds minimal value beyond the schema by implying 'content' is text and 'path' is relative, but this is largely redundant. Baseline 3 is appropriate as the schema does the heavy lifting.

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 verb ('create' or 'overwrite') and resource ('file in the workspace filesystem'), distinguishing it from siblings like 'edit_file_content' (partial edits) and 'create_directory' (directories only). It specifies that it handles both new files and complete overwrites of existing ones.

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 clear context for when to use this tool ('create a new file or completely overwrite an existing file') and includes a caution about overwriting without warning. However, it does not explicitly name alternatives (e.g., 'edit_file_content' for partial edits) or specify when not to use it beyond the caution.

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

TDQS

A3.6/5.0
Disambiguation3/5

The tool set has clear distinctions between filesystem operations (e.g., create_directory, read_file_content) and AI query tools, but significant ambiguity exists within the AI query category. For example, answer_query_direct, explain_topic_with_docs, and get_doc_snippets all involve answering queries with the AI model, differing mainly in their use of web search or documentation focus, which could confuse an agent about which to select for a given task. The 'save_' variants further overlap with their non-save counterparts, adding redundancy rather than clarity.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (e.g., create_directory, read_file_content, search_filesystem), which is predictable and readable. However, there are minor deviations: some tools use underscores inconsistently (e.g., get_doc_snippets vs. save_doc_snippet) or have longer names (e.g., explain_topic_with_docs), and the 'save_' prefix is applied inconsistently across AI tools. Overall, the naming is mostly consistent but not perfectly uniform.

Tool Count3/5

With 20 tools, the count is borderline high for a server focused on Vertex AI and filesystem operations. While the domain is broad, the tool set feels heavy due to redundant 'save_' variants and overlapping AI query tools. A more streamlined set of 10-15 tools could cover the same functionality without duplication, making this count slightly excessive but not extreme.

Completeness4/5

The server covers two main domains: filesystem management and AI-powered querying. For filesystem operations, it provides comprehensive CRUD-like coverage (create, read, edit, move, search, etc.), with no obvious gaps. For AI queries, it offers various modes (direct, web search, documentation-focused) and saving options, though the redundancy might mask minor gaps in specific query types. Overall, the surface is largely complete for its intended purposes.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/shariqriazz/vertex-ai-mcp-server'

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