Skip to main content
Glama
dataforseo

DataForSEO MCP Server

Official
by dataforseo

DataForSEO MCP Server

This is the new v3 MCP server. The previous v2+ MCP server is deprecated and lives at dataforseo/mcp-server-typescript-deprecated.

MCP server and CLI for LLM agents to browse DataForSEO API documentation and make authenticated API requests. By default the binary starts an MCP server on stdio; CLI commands are an optional second mode.

Quick Start

Start the MCP server on stdio (default mode; set DATAFORSEO_LOGIN / DATAFORSEO_PASSWORD):

npx dataforseo-mcp-server@latest

HTTP transport (port 3000; override with PORT):

npx dataforseo-mcp-server@latest --mode http

Related MCP server: FetchSERP MCP Server

Authentication

OAuth 2.0 (default for HTTP MCP): works out of the box. MCP clients discover the DataForSEO authorization server via Protected Resource metadata and send Authorization: Bearer tokens.

Fallback: API login/password via environment variables (HTTP Basic). Required for CLI and stdio MCP; on HTTP it is used when no Authorization header is present.

# bash / macOS / Linux
export DATAFORSEO_LOGIN="your_api_login"
export DATAFORSEO_PASSWORD="your_api_password"
# PowerShell
$env:DATAFORSEO_LOGIN="your_api_login"
$env:DATAFORSEO_PASSWORD="your_api_password"
REM CMD
set DATAFORSEO_LOGIN=your_api_login
set DATAFORSEO_PASSWORD=your_api_password

DATAFORSEO_USERNAME is accepted as an alias for DATAFORSEO_LOGIN. Get API keys at https://app.dataforseo.com/api-access.

MCP Server

The same tool implementations power both the MCP server and the CLI. One binary serves both modes; MCP is the default.

How the binary chooses a mode:

  • MCP stdio — default when no CLI command is passed

  • MCP HTTP — pass --mode http (Streamable HTTP on port 3000; override with PORT)

  • CLI — when the first command is docs or request, or when --cli / --help / --version is passed

MCP stdio (default):

npx dataforseo-mcp-server

MCP HTTP:

npx dataforseo-mcp-server --mode http

CLI:

npx dataforseo-mcp-server docs index

MCP client config (Cursor, Claude Desktop, and similar clients that use mcpServers):

Via URL — use the hosted remote MCP server, or start a local HTTP server (npx dataforseo-mcp-server --mode http) and point the client at it. OAuth works out of the box; env credentials are optional fallback only.

Public remote MCP server URL: https://mcp.dataforseo.com/v3/mcp

{
  "mcpServers": {
    "dataforseo": {
      "url": "https://mcp.dataforseo.com/v3/mcp"
    }
  }
}

Local server (default port 3000):

{
  "mcpServers": {
    "dataforseo": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

Via command (stdio) — the client starts the binary itself (stdio is the default mode). OAuth is not used on this transport — set env credentials (or pass them in the MCP client env block):

{
  "mcpServers": {
    "dataforseo": {
      "command": "npx",
      "args": [
        "dataforseo-mcp-server",
        // Optional additional args:
        // "--docs-cache-dir", "D:\\my-docs-cache",
        // "--configuration", "field-config.json"
      ],
      "env": {
        "DATAFORSEO_LOGIN": "your_api_login",
        "DATAFORSEO_PASSWORD": "your_api_password",
        // Optional additional env:
        // "FIELD_CONFIG_PATH": "field-config.json"
      }
    }
  }
}

From the repo root during development:

{
  "mcpServers": {
    "dataforseo": {
      "command": "npx",
      "args": ["tsx", "src/index.ts"],
      "cwd": "/path/to/mcp-server-typescript"
    }
  }
}

MCP Tools

Tool

Title

Description

docs_index

Docs Index

Fetch documentation index, optionally filtered by section (24h cache)

docs_list_sections

Docs List Sections

Return available documentation section names

docs_search

Docs Search

Fetch documentation from a documentation URL (needCodeExample, 24h cache)

api_request

API Request

Make an authenticated API request

api_request uses .ai paths by default. Set noAiMode to true in MCP requests, or pass --no-ai-mode in the CLI, to use the standard path. Request body is passed as data (JSON object or array). The --param option is CLI-only.

HTTP transport

Streamable HTTP endpoints:

  • POST /mcp

  • POST /http

OAuth 2.0 Protected Resource metadata (RFC 9728) is always exposed so MCP clients can discover the authorization server and authenticate with Bearer tokens:

  • GET /.well-known/oauth-protected-resource

  • GET /.well-known/oauth-protected-resource/mcp

  • GET /.well-known/oauth-protected-resource/http

Behind a reverse proxy, set TRUST_PROXY=true so metadata URLs use https.

Auth priority on HTTP requests:

  1. Authorization: Basic header

  2. Authorization: Bearer header (OAuth access token)

  3. Env credentials (DATAFORSEO_LOGIN / DATAFORSEO_PASSWORD) — fallback when no Authorization header is sent

CLI (optional)

In addition to MCP, the same binary exposes docs and request as CLI commands.

Commands

Command

Description

npx dataforseo-mcp-server docs index

Fetch full API documentation index

npx dataforseo-mcp-server docs index --section "SERP API"

Filter index by API section

npx dataforseo-mcp-server docs index --list-sections

List available sections

npx dataforseo-mcp-server docs search <url>

Fetch documentation from a documentation URL or path (cURL example only by default)

npx dataforseo-mcp-server docs search <url> --need-code-example

Fetch documentation with PHP, Node.js, Python, and C# examples

npx dataforseo-mcp-server request -X <method> -p <path>

Make an authenticated API request (.ai path by default)

From a built local clone you can also use npx . instead of npx dataforseo-mcp-server.

Examples

# Browse SERP API endpoints
npx dataforseo-mcp-server docs index --section "SERP API"

# Read endpoint documentation (path or full docs URL)
npx dataforseo-mcp-server docs search serp/google/organic/live/regular
npx dataforseo-mcp-server docs search https://docs.dataforseo.com/v3/serp/google/organic/live/regular

# Include multi-language code examples (PHP, Node.js, Python, C#)
npx dataforseo-mcp-server docs search backlinks/referring_networks/live --need-code-example

# Live SERP request (recommended: use --param)
npx dataforseo-mcp-server request -X POST -p /v3/serp/google/organic/live/regular \
  --param keyword=dataforseo --param language_code=en --param location_code=2840

# Same request via JSON body
npx dataforseo-mcp-server request -X POST -p /v3/serp/google/organic/live/regular \
  -d '[{"keyword":"dataforseo","location_code":2840,"language_code":"en"}]'

Documentation responses are cached for 24 hours. Default cache directory:

  • Windows: %LOCALAPPDATA%\dataforseo-mcp-server\docs-cache

  • macOS: ~/Library/Caches/dataforseo-mcp-server/docs-cache

  • Linux: ~/.cache/dataforseo-mcp-server/docs-cache (or $XDG_CACHE_HOME)

Override with --cache-dir <path> on CLI docs commands. For MCP, pass --docs-cache-dir <path> in server startup args.

API responses are returned as the response body only (parsed JSON when possible). When a field configuration is loaded, api_request / request responses are trimmed to the configured fields for that endpoint path (see Field configuration).

Field configuration

Optionally limit which fields are returned from API responses. Unlike the previous multi-tool MCP server (keys = tool names), this package keys the config by API endpoint path.

# MCP stdio (default when no CLI command is passed)
npx dataforseo-mcp-server --configuration field-config.json

# MCP HTTP
npx dataforseo-mcp-server --mode http --configuration field-config.json

# CLI
npx dataforseo-mcp-server --configuration field-config.json request -X POST -p /v3/backlinks/summary/live --param target=example.com

Or set env:

  • FIELD_CONFIG_PATH — path to a JSON file (Node)

  • FIELD_CONFIG_JSON — inline JSON string (Node / Cloudflare Worker)

Minimal example (see field-config.example.json for a fuller sample):

{
  "supported_fields": {
    "/v3/serp/google/organic/live/advanced": ["id", "items.title", "items.url", "status_code"],
    "/v3/backlinks/summary/live": ["id", "items.backlinks", "items.referring_domains", "status_code"]
  }
}

Behavior:

  • Built-in defaults always apply for /v3/on_page/lighthouse/live/json (shrunk Lighthouse payload). Custom config merges on top and can override any path.

  • Path match ignores .ai suffix, trailing slash, and host (full URLs work).

  • If the path is configured with a non-empty field list → only those fields are kept (applied to each tasks[].result[] item).

  • If the path has an empty field list [] → full response for that path (disables filtering).

  • If the path is missing from both defaults and custom config → full response.

Copy the example and trim to the endpoints you use:

cp field-config.example.json my-config.json

Architecture

src/
├── index.ts            # Unified entry (MCP by default stdio; CLI if docs/request/--cli)
├── config/             # URLs, sections, auth server
├── core/
│   ├── api/            # auth, client, path, request-body
│   ├── cli/            # program, error, output
│   ├── config/         # field configuration + defaults
│   ├── docs/           # path, section, cache
│   ├── http/           # fetch
│   ├── mcp/            # startup args (--configuration, --docs-cache-dir)
│   ├── tools/          # shared CLI + MCP tool implementations
│   ├── utils/          # field filter
│   ├── env.ts
│   └── version.ts
├── mcp/
│   ├── init-mcp-server.ts
│   ├── tool-definition.ts
│   ├── auth-middleware.ts
│   ├── http-routes.ts
│   ├── index.ts        # stdio transport
│   └── index-http.ts   # streamable HTTP
└── worker/             # Cloudflare Worker entry (built separately)

Build outputs

Target

Command

Output

Used by

Node (MCP + CLI)

npm run build (tsc)

dist/index.js

bin, Docker, start* scripts

Cloudflare Worker

npm run worker:build

build/worker/worker/index-worker.js

wrangler.jsoncmain

Worker path is build/worker/worker/... because tsconfig.worker.json sets rootDir to src and the entry lives at src/worker/index-worker.ts.

For LLM Agents

Read SKILL.md in this repo for full agent instructions.

Development

Requires Node.js 20+.

npm install
npm run build

# Dev (tsx, no build step)
npm run dev              # MCP stdio (default)
npm run dev:mcp:http     # MCP HTTP
npm run dev -- docs index --section "SERP API"   # CLI

# After build
npm run start            # MCP stdio (default)
npm run start:mcp:http   # Streamable HTTP
npx . docs index --list-sections

Available Tools

17 tools
kw_data_google_ads_locationsC

Utility tool for kw_data_google_ads_search_volume to get list of availible locations.

ParametersJSON Schema
NameRequiredDescriptionDefault
country_iso_codeYesISO 3166-1 alpha-2 country code, for example: US, GB, MT
location_typeNoType of location. Possible variants: 'TV Region','Postal Code','Neighborhood','Governorate','National Park','Quarter','Canton','Airport','Okrug','Prefecture','City','Country','Province','Barrio','Sub-District','Congressional District','Municipality District','district','DMA Region','Union Territory','Territory','Colloquial Area','Autonomous Community','Borough','County','State','District','City Region','Commune','Region','Department','Division','Sub-Ward','Municipality','University'
location_nameNoName of location or it`s part.

TDQS

C2.6/5.0
Behavior2/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 states this is a 'utility tool' that 'gets list of available locations', which implies a read-only operation but doesn't disclose any behavioral traits like authentication requirements, rate limits, pagination, error handling, or what format the list returns. The description is minimal and lacks necessary 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 a single sentence that efficiently states the tool's purpose and its relationship to another tool. It's appropriately sized without unnecessary elaboration, though it could be slightly more specific about the resource scope to improve clarity while maintaining conciseness.

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

Completeness2/5

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

Given no annotations and no output schema, the description is incomplete for a tool with 3 parameters. It doesn't explain what the output looks like (e.g., list format, structure), nor does it provide behavioral context needed for proper use. The minimal description leaves significant gaps in understanding how to effectively invoke and interpret results from this tool.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema fully documents all three parameters (country_iso_code, location_type, location_name) with descriptions and constraints. The description adds no additional parameter semantics beyond what's already in the schema, meeting 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.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool's purpose as getting a list of available locations, but it's vague about what kind of locations (Google Ads locations) and doesn't clearly distinguish from sibling tools like 'serp_locations' or 'serp_youtube_locations'. It mentions being a utility for 'kw_data_google_ads_search_volume', which provides some context but lacks specificity about the resource scope.

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 mentions this is a utility for 'kw_data_google_ads_search_volume', implying it should be used in that context, but provides no explicit guidance on when to use this tool versus alternatives like 'serp_locations' or 'serp_youtube_locations'. There's no mention of prerequisites, exclusions, or specific scenarios for choosing this tool.

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

kw_data_google_ads_search_volumeC

Get search volume data for keywords from Google Ads

ParametersJSON Schema
NameRequiredDescriptionDefault
location_nameNofull name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"United States
language_codeNoLanguage two-letter ISO code (e.g., 'en'). optional field
keywordsYesArray of keywords to get search volume for

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'gets' data, implying a read-only operation, but doesn't clarify if it requires authentication, has rate limits, returns real-time or historical data, or handles errors. For a tool with no annotation coverage, this leaves significant gaps in understanding its behavior and constraints.

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 single, efficient sentence: 'Get search volume data for keywords from Google Ads'. It's front-loaded with the core purpose, has zero wasted words, and is appropriately sized for a straightforward tool. Every part of the sentence contributes essential information.

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

Completeness2/5

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

Given the lack of annotations and output schema, the description is incomplete. It doesn't address behavioral aspects like authentication needs, rate limits, or data freshness. For a tool that likely interacts with an external API (Google Ads) and returns search volume data, more context on limitations, response format, or error handling would be beneficial to guide the agent 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%, meaning the input schema fully documents the parameters (location_name, language_code, keywords) with detailed descriptions. The description adds no additional semantic information beyond what's in the schema, such as explaining the relationship between parameters or typical usage patterns. 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.

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: 'Get search volume data for keywords from Google Ads'. It specifies the verb ('Get'), resource ('search volume data'), and source ('Google Ads'), making the function unambiguous. However, it doesn't differentiate from sibling tools like 'kw_data_google_trends_explore' or 'kw_data_dfs_trends_explore', which might also provide keyword-related data from different sources.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools, such as 'kw_data_google_trends_explore' for Google Trends data or 'kw_data_dfs_trends_demography' for demographic trends, leaving the agent without context for tool selection. There's no indication of prerequisites, limitations, or typical use cases.

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

on_page_content_parsingC

This endpoint allows parsing the content on any page you specify and will return the structured content of the target page, including link URLs, anchors, headings, and textual content.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesURL of the page to parse
enable_javascriptNoEnable JavaScript rendering
custom_user_agentNoCustom User-Agent header
accept_languageNoAccept-Language header value

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool parses and returns structured content, but doesn't cover important aspects like whether it makes external HTTP requests, potential rate limits, authentication needs, error handling, or what 'structured content' entails. For a tool that interacts with external URLs, this lack of behavioral context is a significant gap.

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

Conciseness4/5

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

The description is a single, well-structured sentence that efficiently communicates the core functionality. It's appropriately sized and front-loaded with the main purpose. There's no wasted text, though it could potentially benefit from slightly more detail given the lack of annotations and output schema.

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

Completeness2/5

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

Given the complexity of parsing web pages and the absence of both annotations and an output schema, the description is insufficient. It doesn't explain what 'structured content' means in practice, how results are formatted, potential limitations (e.g., JavaScript-dependent content), or error conditions. For a tool with 4 parameters and no structured output documentation, this leaves significant gaps for an AI agent.

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

Parameters3/5

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

Schema description coverage is 100%, so the input schema already documents all four parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema. It mentions parsing 'any page you specify' which aligns with the 'url' parameter, but provides no additional syntax, format, or usage details. 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.

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: parsing content from a specified page and returning structured content including links, anchors, headings, and text. It uses specific verbs ('parsing', 'return') and identifies the resource ('any page you specify'). However, it doesn't explicitly differentiate from sibling tools like 'on_page_instant_pages' or 'on_page_lighthouse', which likely have related but distinct functions.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools or contexts where this parsing tool is preferred over other on_page or serp tools. Usage is implied only by the general purpose, with no explicit when/when-not statements or prerequisites.

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

on_page_instant_pagesC

Using this function you will get page-specific data with detailed information on how well a particular page is optimized for organic search

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesURL to analyze
enable_javascriptNoEnable JavaScript rendering
custom_jsNoCustom JavaScript code to execute
custom_user_agentNoCustom User-Agent header
accept_languageNolanguage header for accessing the website all locale formats are supported (xx, xx-XX, xxx-XX, etc.) Note: if you do not specify this parameter, some websites may deny access; in this case, pages will be returned with the "type":"broken in the response array

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 getting 'detailed information on how well a particular page is optimized' but doesn't describe what that information includes, whether it performs active crawling/scraping, potential rate limits, authentication needs, or error handling. The description lacks crucial behavioral context for a tool that likely makes external HTTP requests.

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

Conciseness4/5

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

The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for a tool with 5 parameters and no annotations. However, it could be more front-loaded with critical behavioral information given the lack of annotations.

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

Completeness2/5

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

For a tool that likely performs external HTTP requests and SEO analysis with 5 parameters and no annotations or output schema, the description is insufficient. It doesn't explain what kind of data is returned, how comprehensive the analysis is, potential limitations, or error scenarios. The agent lacks crucial context to use this tool 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%, so the schema already documents all 5 parameters thoroughly. The description adds no parameter-specific information beyond what's in the schema. It doesn't explain how parameters like 'enable_javascript' or 'custom_js' affect the analysis results. 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.

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: 'get page-specific data with detailed information on how well a particular page is optimized for organic search.' It specifies the verb 'get' and resource 'page-specific data' with the specific context of organic search optimization. However, it doesn't explicitly differentiate from siblings like 'on_page_content_parsing' or 'on_page_lighthouse' which might have overlapping SEO analysis functions.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, exclusions, or comparisons to sibling tools like 'on_page_content_parsing' or 'on_page_lighthouse' that might offer similar or complementary SEO analysis capabilities. The agent must infer usage from the description alone.

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

on_page_lighthouseC

The OnPage Lighthouse API is based on Google’s open-source Lighthouse project for measuring the quality of web pages and web apps.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesURL of the page to parse
enable_javascriptNoEnable JavaScript rendering
custom_user_agentNoCustom User-Agent header
accept_languageNoAccept-Language header value

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden but fails to disclose key behavioral traits. It does not mention whether this is a read-only operation, potential rate limits, authentication needs, or what the output entails (e.g., audit results, scores, errors). The description only provides background on Lighthouse without operational details.

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

Conciseness4/5

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

The description is a single, well-structured sentence that efficiently explains the tool's basis without unnecessary details. It is front-loaded with the core information, though it could be more concise by directly stating the tool's function rather than background.

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

Completeness2/5

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

Given no annotations and no output schema, the description is incomplete for a tool with 4 parameters and likely complex behavior (web page quality measurement). It lacks details on what the tool returns, error handling, or performance implications, leaving significant gaps for an AI agent to understand its use.

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 fully documents all parameters (url, enable_javascript, custom_user_agent, accept_language). The description adds no additional meaning about parameters beyond what the schema provides, such as default behaviors or usage examples. 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.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool is 'based on Google's open-source Lighthouse project for measuring the quality of web pages and web apps,' which provides a general purpose but lacks specificity about what it actually does (e.g., run audits, generate reports, return scores). It distinguishes from some siblings like 'on_page_content_parsing' by mentioning Lighthouse, but the verb 'measuring' is vague compared to more precise alternatives.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. It does not mention sibling tools like 'on_page_content_parsing' or 'on_page_instant_pages' for comparison, nor does it specify contexts or exclusions for usage. The description only gives background without practical application advice.

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

serp_locationsC

Utility tool for serp_organic_live_advanced to get list of availible locations.

ParametersJSON Schema
NameRequiredDescriptionDefault
search_engineNosearch engine name, one of: google, yahoo, bing.google
country_iso_codeYesISO 3166-1 alpha-2 country code, for example: US, GB, MT
location_typeNoType of location. Possible variants: 'TV Region','Postal Code','Neighborhood','Governorate','National Park','Quarter','Canton','Airport','Okrug','Prefecture','City','Country','Province','Barrio','Sub-District','Congressional District','Municipality District','district','DMA Region','Union Territory','Territory','Colloquial Area','Autonomous Community','Borough','County','State','District','City Region','Commune','Region','Department','Division','Sub-Ward','Municipality','University'
location_nameNoName of location or it`s part.

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool 'gets list of availible locations,' which suggests a read-only operation, but doesn't clarify aspects like authentication needs, rate limits, error handling, or what 'availible' entails (e.g., cached vs. live data). This leaves significant gaps in understanding how the tool behaves beyond its basic function.

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

Conciseness4/5

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

The description is a single, straightforward sentence that efficiently states the tool's purpose and its relationship to a sibling tool. It avoids unnecessary details or repetition, making it front-loaded and easy to parse. However, minor spelling errors ('availible') slightly detract from polish, but overall, it's appropriately sized with zero waste.

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

Completeness2/5

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

Given the tool's complexity (4 parameters, no output schema, and no annotations), the description is insufficiently complete. It lacks details on return values (e.g., format of the location list), behavioral traits like performance or constraints, and differentiation from siblings. While the schema covers parameters well, the overall context for an AI agent to effectively use this tool is incomplete, especially without annotations to fill gaps.

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 detailed parameter documentation including defaults and enums (e.g., 'search_engine' options, 'location_type' variants). The description adds no additional parameter semantics beyond what the schema provides, such as explaining interactions between parameters or usage examples. Given the high schema coverage, a baseline score of 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.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool is a 'utility tool for serp_organic_live_advanced to get list of availible locations,' which clarifies it fetches location data for a specific sibling tool. However, it's somewhat vague about what 'availible locations' means (e.g., search engine locations, geographic areas) and doesn't explicitly distinguish it from other location-related siblings like 'serp_youtube_locations' or 'kw_data_google_ads_locations,' leaving room for ambiguity in its exact scope.

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 mentions it's a utility for 'serp_organic_live_advanced,' implying usage in that context, but provides no explicit guidance on when to use this tool versus alternatives like 'serp_youtube_locations' or 'kw_data_google_ads_locations.' There are no exclusions, prerequisites, or clear scenarios outlined, making it rely on implied context without actionable advice for an AI agent.

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

serp_organic_live_advancedC

Get organic search results for a keyword in specified search engine

ParametersJSON Schema
NameRequiredDescriptionDefault
search_engineNosearch engine name, one of: google, yahoo, bing.google
location_nameNofull name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"United States
depthNoparsing depth optional field number of results in SERP
language_codeYessearch engine language code (e.g., 'en')
keywordYesSearch keyword
max_crawl_pagesNopage crawl limit optional field number of search results pages to crawl max value: 100 Note: the max_crawl_pages and depth parameters complement each other
deviceNodevice type optional field can take the values:desktop, mobile default value: desktopdesktop
people_also_ask_click_depthNoclicks on the corresponding element specify the click depth on the people_also_ask element to get additional people_also_ask_element items;

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. While 'Get organic search results' implies a read-only operation, the description doesn't mention important behavioral aspects like rate limits, authentication requirements, whether this performs live searches versus cached results, or what format/scope the results will have. The description is too minimal for a tool with 8 parameters and no output schema.

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 at just 9 words, front-loading the core purpose without any unnecessary elaboration. Every word serves a clear purpose in communicating the tool's function.

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

Completeness2/5

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

For a tool with 8 parameters, no annotations, no output schema, and complex sibling relationships, the description is inadequate. It doesn't address what the tool returns, how results are structured, performance characteristics, or differentiation from similar tools. The minimal description leaves too many contextual gaps for effective agent usage.

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

Parameters3/5

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

The description adds no parameter semantics beyond what's already in the schema. Since schema description coverage is 100%, the baseline score is 3. The description doesn't explain relationships between parameters (like how depth and max_crawl_pages interact) or provide usage examples that would add value beyond the schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get organic search results') and resource ('for a keyword in specified search engine'), providing specific verb+resource pairing. However, it doesn't distinguish this tool from its sibling 'serp_youtube_organic_live_advanced', which appears to serve a similar purpose for YouTube specifically.

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. With multiple sibling tools available (including other SERP tools and keyword data tools), there's no indication of when this specific organic search results tool is appropriate versus other options like 'serp_youtube_organic_live_advanced' or the various keyword trend analysis tools.

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

serp_youtube_locationsB

Utility tool to get list of available locations for: serp_youtube_organic_live_advanced, serp_youtube_video_info_live_advanced, serp_youtube_video_comments_live_advanced, serp_youtube_video_subtitles_live_advanced.

ParametersJSON Schema
NameRequiredDescriptionDefault
country_iso_codeYesISO 3166-1 alpha-2 country code, for example: US, GB, MT
location_typeNoType of location. Possible variants: 'TV Region','Postal Code','Neighborhood','Governorate','National Park','Quarter','Canton','Airport','Okrug','Prefecture','City','Country','Province','Barrio','Sub-District','Congressional District','Municipality District','district','DMA Region','Union Territory','Territory','Colloquial Area','Autonomous Community','Borough','County','State','District','City Region','Commune','Region','Department','Division','Sub-Ward','Municipality','University'
location_nameNoName of location or it`s part.

TDQS

B3.4/5.0
Behavior2/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 states this is a 'utility tool' but doesn't disclose behavioral traits like whether it's read-only, has rate limits, authentication requirements, or what format the location list returns. The description is minimal and lacks 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.

Conciseness5/5

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

The description is extremely concise - a single sentence that efficiently communicates the tool's purpose and scope. Every word serves a purpose with zero waste. It's appropriately sized for a utility tool with well-documented parameters.

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

Completeness2/5

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

For a tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the output looks like (list format, structure), whether results are filtered/paginated, or any operational constraints. Given the lack of structured metadata, the description should provide more complete context about the tool's behavior and results.

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 three parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't 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: to get a list of available locations for specific YouTube SERP tools. It specifies the verb 'get' and resource 'list of available locations', and identifies the tools it supports. However, it doesn't differentiate from sibling 'serp_locations' which might serve a similar function for other SERP tools.

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

Usage Guidelines4/5

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

The description explicitly states when to use this tool: for the four specific YouTube SERP tools listed. This provides clear context about its intended use case. However, it doesn't mention when NOT to use it or alternatives like 'serp_locations' for other SERP tools.

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

serp_youtube_organic_live_advancedC

provides top 20 blocks of youtube search engine results for a keyword

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordYesSearch keyword
location_nameYesfull name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"
language_codeYessearch engine language code (e.g., 'en')
deviceNodevice type optional field can take the values:desktop, mobile default value: desktopdesktop
osNodevice operating system optional field if you specify desktop in the device field, choose from the following values: windows, macos default value: windows if you specify mobile in the device field, choose from the following values: android, ios default value: androidwindows
block_depthNoparsing depth optional field number of blocks of results in SERP max value: 700

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'top 20 blocks' and 'live' (implied from the name), but doesn't cover critical aspects like rate limits, authentication needs, data freshness, error handling, or what 'blocks' contain. For a tool with 6 parameters and no annotation coverage, this is insufficient.

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

Conciseness4/5

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

The description is a single, efficient sentence that front-loads the core purpose. It avoids unnecessary words and directly states what the tool does. However, it could be slightly more structured by explicitly mentioning it's for YouTube SERP analysis.

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

Completeness2/5

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

Given the tool's complexity (6 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain the output format (what 'blocks' include), behavioral constraints, or error cases. For a live SERP tool with multiple configuration options, more context is needed to use it 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%, so the schema already documents all parameters thoroughly. The description adds no parameter-specific information beyond implying keyword usage. It doesn't explain relationships between parameters (e.g., device-OS constraints) or provide examples. 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.

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 top 20 blocks of youtube search engine results for a keyword'. It specifies the verb ('provides'), resource ('youtube search engine results'), and scope ('top 20 blocks'). However, it doesn't explicitly differentiate from sibling tools like 'serp_organic_live_advanced' or 'serp_youtube_video_info_live_advanced', which would require a 5.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'serp_organic_live_advanced' (for general SERP) or 'serp_youtube_video_info_live_advanced' (for video details), nor does it specify prerequisites or exclusions. Usage is implied from the purpose but not explicitly stated.

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

serp_youtube_video_comments_live_advancedD

provides data on the video comments you specify

ParametersJSON Schema
NameRequiredDescriptionDefault
video_idYesID of the video
location_nameYesfull name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"
language_codeYessearch engine language code (e.g., 'en')
deviceNodevice type optional field can take the values:desktop, mobile default value: desktopdesktop
osNodevice operating system optional field if you specify desktop in the device field, choose from the following values: windows, macos default value: windows if you specify mobile in the device field, choose from the following values: android, ios default value: androidwindows
depthNoparsing depth, number of results in SERP, max value: 700

TDQS

D1.8/5.0
Behavior1/5

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

No annotations are provided, so the description must fully disclose behavioral traits. It only states what the tool does at a high level, omitting critical details such as whether it's a read-only operation, rate limits, authentication needs, data freshness (implied by 'live' in the name but not explained), or what the output format looks like (no output schema). This leaves the agent guessing about operational constraints.

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

Conciseness2/5

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

The description is a single vague sentence that under-specifies the tool's function, failing to front-load key information. While concise, it lacks substance—every sentence should earn its place, but this one provides minimal value, making it inefficient rather than appropriately sized.

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

Completeness2/5

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

Given the tool's complexity (6 parameters, no annotations, no output schema), the description is incomplete. It does not address what data is returned (e.g., comment text, timestamps, metrics), how results are structured, or any behavioral aspects like pagination or error handling. Without annotations or output schema, the description should provide more context to guide the agent 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%, meaning all parameters are documented in the schema itself. The description adds no additional meaning beyond the schema—it does not explain how parameters interact (e.g., how 'location_name' affects comment retrieval) or provide usage examples. With high schema coverage, the baseline score is 3, as the description does not compensate but also doesn't detract.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'provides data on the video comments you specify' is tautological—it essentially restates the tool name 'serp_youtube_video_comments_live_advanced' without adding specificity. It lacks a clear verb (e.g., 'fetch', 'analyze', 'retrieve') and does not distinguish this tool from sibling tools like 'serp_youtube_video_info_live_advanced' or 'serp_youtube_video_subtitles_live_advanced', which also provide video-related data.

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

Usage Guidelines1/5

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

No guidance is provided on when to use this tool versus alternatives. The description does not mention any context, prerequisites, or exclusions, and it fails to reference sibling tools (e.g., 'serp_youtube_video_info_live_advanced' for general video info or 'serp_youtube_organic_live_advanced' for search results), leaving the agent without direction on tool selection.

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

serp_youtube_video_info_live_advancedC

provides data on the video you specify

ParametersJSON Schema
NameRequiredDescriptionDefault
video_idYesID of the video
location_nameYesfull name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"
language_codeYessearch engine language code (e.g., 'en')
deviceNodevice type optional field can take the values:desktop, mobile default value: desktopdesktop
osNodevice operating system optional field if you specify desktop in the device field, choose from the following values: windows, macos default value: windows if you specify mobile in the device field, choose from the following values: android, ios default value: androidwindows

TDQS

C2.2/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. However, it offers no information on what data is returned, whether it's real-time or cached, rate limits, authentication needs, or potential side effects. This leaves critical behavioral traits unspecified for a tool that appears to query live data.

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

Conciseness4/5

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

The description is a single, efficient sentence with no wasted words, making it front-loaded and easy to parse. However, it is overly concise to the point of under-specification, lacking necessary details for effective tool use.

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

Completeness2/5

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

Given the tool's complexity (5 parameters, no output schema, no annotations), the description is incomplete. It does not explain what data is returned, the tool's behavior, or how it integrates with sibling tools. This gap makes it inadequate for an agent to understand the tool's full context and usage.

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%, meaning all parameters are documented in the input schema. The description adds no additional meaning beyond the schema, such as explaining why location_name or language_code are required or how they affect the results. Baseline 3 is appropriate since the schema handles the heavy lifting, but the description fails to compensate with any contextual insights.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'provides data on the video you specify' is vague and tautological—it essentially restates the tool name without specifying what type of data is provided or how it differs from sibling tools like serp_youtube_video_comments_live_advanced or serp_youtube_video_subtitles_live_advanced. It lacks a specific verb and resource scope, failing to clarify the tool's unique function.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. The description does not mention any context, prerequisites, or exclusions, leaving the agent to infer usage from the input schema alone. This is insufficient for a tool with multiple parameters and sibling tools in the same domain.

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

serp_youtube_video_subtitles_live_advancedC

provides data on the video subtitles you specify

ParametersJSON Schema
NameRequiredDescriptionDefault
video_idYesID of the video
location_nameYesfull name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"
language_codeYessearch engine language code (e.g., 'en')
subtitles_languageNolanguage code of original text (e.g., 'en')
subtitles_translate_languageNolanguage code of translated text (e.g., 'en')
deviceNodevice type optional field can take the values:desktop, mobile default value: desktopdesktop
osNodevice operating system optional field if you specify desktop in the device field, choose from the following values: windows, macos default value: windows if you specify mobile in the device field, choose from the following values: android, ios default value: androidwindows

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal insight. It doesn't indicate whether this is a read-only operation, if it requires authentication, potential rate limits, or what the output format might be (e.g., structured data, raw text). The phrase 'provides data' is too generic to convey meaningful behavioral traits.

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

Conciseness5/5

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

The description is extremely concise—a single sentence with no wasted words. It's front-loaded and efficiently states the core function, though this brevity comes at the cost of detail. Every word earns its place, making it structurally sound.

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

Completeness2/5

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

Given the tool's complexity (7 parameters, no annotations, no output schema), the description is insufficiently complete. It doesn't explain what 'data' is returned, how subtitles are retrieved or processed, or any behavioral nuances. For a tool with multiple parameters and no output schema, more context is needed to guide effective use.

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

Parameters3/5

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

The schema description coverage is 100%, meaning all parameters are documented in the schema itself. The description adds no additional meaning beyond the schema, such as explaining interactions between parameters (e.g., how device and OS relate) or clarifying the purpose of subtitles-related fields. With high schema coverage, 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.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool 'provides data on the video subtitles you specify', which gives a vague purpose (verb+resource) but lacks specificity about what kind of data (e.g., raw text, timestamps, availability) or how it differs from sibling tools like serp_youtube_video_info_live_advanced. It doesn't clearly distinguish itself from potential alternatives.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. The description doesn't mention any context, prerequisites, or exclusions, leaving the agent with no information about appropriate use cases or how this tool relates to siblings in the SERP/YouTube domain.

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. Dates show when Glama detected each change.

  1. 17 tool updatesv1.0.2
    • Addedkw_data_dfs_trends_demography
    • Addedkw_data_dfs_trends_explore
    • Addedkw_data_dfs_trends_subregion_interests
    • Addedkw_data_google_ads_locations
    • Addedkw_data_google_ads_search_volume
    • Addedkw_data_google_trends_categories
    • Addedkw_data_google_trends_explore
    • Addedon_page_content_parsing
    • Addedon_page_instant_pages
    • Addedon_page_lighthouse
    • Addedserp_locations
    • Addedserp_organic_live_advanced
    • Addedserp_youtube_locations
    • Addedserp_youtube_organic_live_advanced
    • Addedserp_youtube_video_comments_live_advanced
    • Addedserp_youtube_video_info_live_advanced
    • Addedserp_youtube_video_subtitles_live_advanced
  2. 17 tool updatesv1.0.0
    • Removedkw_data_dfs_trends_demography
    • Removedkw_data_dfs_trends_explore
    • Removedkw_data_dfs_trends_subregion_interests
    • Removedkw_data_google_ads_locations
    • Removedkw_data_google_ads_search_volume
    • Removedkw_data_google_trends_categories
    • Removedkw_data_google_trends_explore
    • Removedon_page_content_parsing
    • Removedon_page_instant_pages
    • Removedon_page_lighthouse
    • Removedserp_locations
    • Removedserp_organic_live_advanced
    • Removedserp_youtube_locations
    • Removedserp_youtube_organic_live_advanced
    • Removedserp_youtube_video_comments_live_advanced
    • Removedserp_youtube_video_info_live_advanced
    • Removedserp_youtube_video_subtitles_live_advanced
  3. 15 tool updatesv1.0.1
    • Removedkeywords_data_dataforseo_trends_demography
    • Removedkeywords_data_dataforseo_trends_explore
    • Removedkeywords_data_dataforseo_trends_subregion_interests
    • Removedkeywords_data_google_ads_search_volume
    • Removedkeywords_data_google_trends_categories
    • Removedkeywords_data_google_trends_explore
    • Addedkw_data_dfs_trends_demography
    • Addedkw_data_dfs_trends_explore
    • Addedkw_data_dfs_trends_subregion_interests
    • Addedkw_data_google_ads_locations
    • Addedkw_data_google_ads_search_volume
    • Addedkw_data_google_trends_categories
    • Addedkw_data_google_trends_explore
    • Changedon_page_content_parsing1 field changed
      • removedInput schema / properties / custom_js
        Removed value: -{
        -  "description": "Custom JavaScript code to execute",
        -  "type": "string"
        -}
    • Changedon_page_lighthouse1 field changed
      • removedInput schema / properties / custom_js
        Removed value: -{
        -  "description": "Custom JavaScript code to execute",
        -  "type": "string"
        -}
  4. 52 tool updates
    • Removedai_optimization_keyword_data_locations_and_languages
    • Removedai_optimization_keyword_data_search_volume
    • Removedbacklinks_anchors
    • Removedbacklinks_available_filters
    • Removedbacklinks_backlinks
    • Removedbacklinks_bulk_backlinks
    • Removedbacklinks_bulk_new_lost_backlinks
    • Removedbacklinks_bulk_new_lost_referring_domains
    • Removedbacklinks_bulk_pages_summary
    • Removedbacklinks_bulk_ranks
    • Removedbacklinks_bulk_referring_domains
    • Removedbacklinks_bulk_spam_score
    • Removedbacklinks_competitors
    • Removedbacklinks_domain_intersection
    • Removedbacklinks_domain_pages
    • Removedbacklinks_domain_pages_summary
    • Removedbacklinks_page_intersection
    • Removedbacklinks_referring_domains
    • Removedbacklinks_referring_networks
    • Removedbacklinks_summary
    • Removedbacklinks_timeseries_new_lost_summary
    • Removedbacklinks_timeseries_summary
    • Removedbusiness_data_business_listings_search
    • Removedcontent_analysis_phrase_trends
    • Removedcontent_analysis_search
    • Removedcontent_analysis_summary
    • Removeddataforseo_labs_available_filters
    • Removeddataforseo_labs_bulk_keyword_difficulty
    • Removeddataforseo_labs_bulk_traffic_estimation
    • Removeddataforseo_labs_google_competitors_domain
    • Removeddataforseo_labs_google_domain_intersection
    • Removeddataforseo_labs_google_domain_rank_overview
    • Removeddataforseo_labs_google_historical_keyword_data
    • Removeddataforseo_labs_google_historical_rank_overview
    • Removeddataforseo_labs_google_historical_serp
    • Removeddataforseo_labs_google_keyword_ideas
    • Removeddataforseo_labs_google_keyword_overview
    • Removeddataforseo_labs_google_keyword_suggestions
    • Removeddataforseo_labs_google_keywords_for_site
    • Removeddataforseo_labs_google_page_intersection
    • Removeddataforseo_labs_google_ranked_keywords
    • Removeddataforseo_labs_google_related_keywords
    • Removeddataforseo_labs_google_serp_competitors
    • Removeddataforseo_labs_google_subdomains
    • Removeddataforseo_labs_google_top_searches
    • Removeddataforseo_labs_search_intent
    • Removeddomain_analytics_technologies_available_filters
    • Removeddomain_analytics_technologies_domain_technologies
    • Removeddomain_analytics_whois_available_filters
    • Removeddomain_analytics_whois_overview
    • Changedkeywords_data_google_trends_categories1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Addedon_page_lighthouse
  5. 65 tool updates
    • First observedai_optimization_keyword_data_locations_and_languages
    • First observedai_optimization_keyword_data_search_volume
    • First observedbacklinks_anchors
    • First observedbacklinks_available_filters
    • First observedbacklinks_backlinks
    • First observedbacklinks_bulk_backlinks
    • First observedbacklinks_bulk_new_lost_backlinks
    • First observedbacklinks_bulk_new_lost_referring_domains
    • First observedbacklinks_bulk_pages_summary
    • First observedbacklinks_bulk_ranks
    • First observedbacklinks_bulk_referring_domains
    • First observedbacklinks_bulk_spam_score
    • First observedbacklinks_competitors
    • First observedbacklinks_domain_intersection
    • First observedbacklinks_domain_pages
    • First observedbacklinks_domain_pages_summary
    • First observedbacklinks_page_intersection
    • First observedbacklinks_referring_domains
    • First observedbacklinks_referring_networks
    • First observedbacklinks_summary
    • First observedbacklinks_timeseries_new_lost_summary
    • First observedbacklinks_timeseries_summary
    • First observedbusiness_data_business_listings_search
    • First observedcontent_analysis_phrase_trends
    • First observedcontent_analysis_search
    • First observedcontent_analysis_summary
    • First observeddataforseo_labs_available_filters
    • First observeddataforseo_labs_bulk_keyword_difficulty
    • First observeddataforseo_labs_bulk_traffic_estimation
    • First observeddataforseo_labs_google_competitors_domain
    • First observeddataforseo_labs_google_domain_intersection
    • First observeddataforseo_labs_google_domain_rank_overview
    • First observeddataforseo_labs_google_historical_keyword_data
    • First observeddataforseo_labs_google_historical_rank_overview
    • First observeddataforseo_labs_google_historical_serp
    • First observeddataforseo_labs_google_keyword_ideas
    • First observeddataforseo_labs_google_keyword_overview
    • First observeddataforseo_labs_google_keyword_suggestions
    • First observeddataforseo_labs_google_keywords_for_site
    • First observeddataforseo_labs_google_page_intersection
    • First observeddataforseo_labs_google_ranked_keywords
    • First observeddataforseo_labs_google_related_keywords
    • First observeddataforseo_labs_google_serp_competitors
    • First observeddataforseo_labs_google_subdomains
    • First observeddataforseo_labs_google_top_searches
    • First observeddataforseo_labs_search_intent
    • First observeddomain_analytics_technologies_available_filters
    • First observeddomain_analytics_technologies_domain_technologies
    • First observeddomain_analytics_whois_available_filters
    • First observeddomain_analytics_whois_overview
    • First observedkeywords_data_dataforseo_trends_demography
    • First observedkeywords_data_dataforseo_trends_explore
    • First observedkeywords_data_dataforseo_trends_subregion_interests
    • First observedkeywords_data_google_ads_search_volume
    • First observedkeywords_data_google_trends_categories
    • First observedkeywords_data_google_trends_explore
    • First observedon_page_content_parsing
    • First observedon_page_instant_pages
    • First observedserp_locations
    • First observedserp_organic_live_advanced
    • First observedserp_youtube_locations
    • First observedserp_youtube_organic_live_advanced
    • First observedserp_youtube_video_comments_live_advanced
    • First observedserp_youtube_video_info_live_advanced
    • First observedserp_youtube_video_subtitles_live_advanced

TDQS

B3/5.0
Disambiguation4/5

Most tools have distinct purposes across keyword data, on-page analysis, and SERP categories, with clear separation between Google Ads, Google Trends, and YouTube-specific tools. However, some overlap exists between kw_data_dfs_trends_explore and kw_data_google_trends_explore, both providing keyword popularity data from different sources, which could cause minor confusion.

Naming Consistency4/5

The naming follows a consistent snake_case pattern with clear prefixes (kw_data_, on_page_, serp_) that group related tools logically. Minor inconsistencies include variations like 'availible' vs 'available' in descriptions and some utility tools having simpler names (e.g., serp_locations), but the overall structure is predictable and readable.

Tool Count4/5

With 17 tools, the count is slightly high but reasonable for a comprehensive SEO data server covering keyword trends, on-page analysis, and SERP data across multiple platforms. It avoids being overwhelming by grouping tools into clear categories, though it borders on the upper limit of typical scoping.

Completeness5/5

The toolset provides thorough coverage for SEO analysis, including keyword research (volume, trends, demographics), on-page optimization (content parsing, Lighthouse metrics), and SERP data (organic results, YouTube video details, comments, subtitles). Utility tools for locations ensure no dead ends, and the surface supports end-to-end workflows without obvious gaps.

Maintenance

ActivityActive
ResponsivenessWithin a week

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    A stdio-based server that enables interaction with the DataForSEO API through the Model Context Protocol, allowing users to fetch SEO data including search results, keywords data, backlinks, on-page analysis, and more.
    20
    7
    MIT
  • -
    license
    C
    quality
    Not graded
    maintenance
    A Model Context Protocol server that provides AI assistants with access to FetchSERP API capabilities for SEO analysis, SERP data, web scraping, and keyword research.
    23
    19
    19
    -
  • -
    license
    C
    quality
    Not graded
    maintenance
    A Model Context Protocol server that exposes Haloscan SEO API functionality, allowing users to access keyword insights, domain analysis, and competitor research through Claude for Desktop and other MCP-compatible clients.
    32
    66
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server that provides comprehensive SEO analysis tools with actionable fix instructions for AI assistants like Claude Code and Claude Desktop.
    MIT

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/dataforseo/mcp-server-typescript'

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