Descovo
Server Details
B2B people and company data for AI agents. Search 700M+ professionals by role, company, and industry. Reveal verified work emails and direct phone numbers inline. Free to search, 1 credit per verified reveal. Supports Claude Desktop, Claude Code, Cursor, and any MCP client.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 5 of 5 tools scored. Lowest: 2.7/5.
Each tool serves a distinct purpose: call_operation executes, get_endpoint_details_full provides schema, list_all_endpoints and search_endpoints discover endpoints, and list_tag_packs aids browsing. No overlap.
All tool names follow a consistent verb_noun pattern in snake_case, such as 'call_operation', 'list_all_endpoints', and 'search_endpoints'. No mixing of styles.
With 5 tools, the set is well-scoped for a dynamic API gateway: discovery, details, execution, and tag-based exploration. Not too many or too few.
The tools cover the full lifecycle of interacting with an API catalog: discovery (list, search), detailed schema inspection (get_endpoint_details_full), and execution (call_operation). No obvious gaps like missing tag management.
Available Tools
5 toolscall_operationAInspect
Execute any Descovo API operation by operationId.
IMPORTANT:
apiKey is NOT required in the body if the MCP client sends an x-api-key header (most configs do). The backend auto-injects it.
Prefer search_endpoints() first when operation choice is ambiguous.
Use get_endpoint_details_full(operationId='...') first for complex/nested parameter shapes.
Args: operationId: The operation ID to call params: Parameters dict: {"body": {...}, "path": {...}, "query": {...}}
Returns: API response data or error details.
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | ||
| operationId | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses key behavioral traits: auto-injection of apiKey, fallback recommendations, and return of error details. No contradictions with missing annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Compact, well-organized into IMPORTANT and Args sections; every sentence adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Fully covers usage, parameters, and return value (API response or error details), meeting all needs for a generic API caller tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema coverage, the description fully explains both parameters: operationId as string and params as dict with body/path/query, adding essential structural detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Explicitly states the tool executes 'any Descovo API operation by operationId', clearly defining its purpose and distinguishing it from sibling tools like search_endpoints and get_endpoint_details_full.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance: when to omit apiKey (auto-injection), when to prefer search_endpoints (ambiguous choice), and when to use get_endpoint_details_full (complex parameters).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_endpoint_details_fullAInspect
Get COMPLETE schema and details for a specific API operation.
Use this BEFORE calling an API to understand exactly what parameters are needed.
Args: operationId: The operation ID (e.g., "syncContactEnrichment")
Returns: Complete schema including all required/optional fields, request body schema, response schema, and example usage.
| Name | Required | Description | Default |
|---|---|---|---|
| operationId | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It explains the return includes complete schema, request/response details, and examples. This adequately communicates the read-only nature and behavior, though it omits mention of error handling or invalid inputs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with only four sentences, each earning its place. It front-loads the purpose, gives usage advice, and then lists args and returns in a clear, structured manner.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has one parameter and an output schema, the description covers what the tool does and returns. It lists key return components (request body, response schema, example). Minor omission: no mention of errors or state effects, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description compensates by providing an example ('syncContactEnrichment') and explaining the parameter as 'The operation ID'. This adds meaningful context beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets the 'COMPLETE schema and details for a specific API operation'. It uses a specific verb ('Get') and resource, and distinguishes well from siblings like list_all_endpoints (lists all) and call_operation (executes).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Use this BEFORE calling an API to understand exactly what parameters are needed,' which provides clear context and contrasts with call_operation. However, it does not mention when not to use it or exclude other sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_all_endpointsCInspect
List available Descovo API endpoints with optional tag/search filtering.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| limit | No | ||
| search | No | ||
| tagPack | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must fully disclose behavioral traits. It indicates a read operation (list) but lacks details on pagination, rate limits, or any side effects. Minimal disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with no fluff. It is efficient but could be slightly improved by front-loading the main action. Still, it achieves conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description fails to explain four optional parameters and usage context. Given the presence of sibling tools, more detail is needed to avoid ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description should clarify parameters. It mentions 'tag/search filtering' hinting at 'tags' and 'search' but ignores 'limit' and 'tagPack'. Insufficient compensation for missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it lists available Descovo API endpoints with optional filtering. The verb 'list' and resource 'endpoints' are specific. It distinguishes from siblings like 'call_operation' but not from 'search_endpoints' explicitly, though the name implies a broader listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus siblings like 'search_endpoints' or 'get_endpoint_details_full'. Does not specify any preconditions or contexts.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tag_packsAInspect
List curated tag packs for large tool catalogs.
Use this to narrow exploration (for example social-media or enrichment).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility. It describes a list operation which is inherently read-only, but does not elaborate on potential limitations (e.g., whether the list is exhaustive, sorted, or paginated). For a simple list with no parameters, this is adequate but could be richer.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences. Every word is purposeful: the first sentence defines the tool's action, the second provides usage guidance with examples. No unnecessary information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and an existing output schema, the description is complete and self-contained. It provides all necessary context for an agent to understand when and why to use this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has no parameters, so coverage is 100% by default. The description adds value by explaining the purpose (curated tag packs) and providing usage examples, which goes beyond the empty schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists curated tag packs for large tool catalogs, with examples of narrowing exploration like social-media or enrichment. This verb+resource combination is distinct from siblings which focus on endpoints and operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises using this tool to narrow exploration, providing concrete examples. While it doesn't state when not to use it, the sibling tools cover different aspects (endpoints, operations) making the usage context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_endpointsAInspect
Canonical API selection tool for endpoint discovery and ranking.
Use this first to get the top recommended operations for a user intent. Supports optional constraints plus tag-scoped selection via preferredTags, excludedTags, or a curated tagPack key.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| tagPack | No | ||
| constraints | No | ||
| excludedTags | No | ||
| preferredTags | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should fully disclose behavior. It mentions discovery and ranking and optional constraints, implying read-only operation, but does not specify output structure, pagination, or side effects. Adequate but leaves gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with key identifier 'Canonical API selection tool'. No redundant information; every sentence adds value. Highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 6 parameters with no schema descriptions and presence of output schema, the description covers the main purpose and key parameters well. Missing details on 'query' and 'limit' prevent full completeness, but the tool's purpose is clear.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 0% description coverage, so description must compensate. It explains tag-scoped selection (preferredTags, excludedTags, tagPack) and constraints, but does not define the 'query' parameter (user intent) or 'limit' parameter. Adds value but not complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool is for endpoint discovery and ranking, with a specific verb 'search' and resource 'endpoints'. Distinguishes from siblings like list_all_endpoints (listing all) and get_endpoint_details_full (details) by emphasizing canonical selection and ranking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells agents to 'Use this first to get the top recommended operations for a user intent', providing clear context for when to use. Lacks explicit when-not or alternatives, but the guidance is strong enough relative to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityAmaintenanceGTM signal intelligence suite for AI agents. Six tools: hiring signals, tech stack detection, company-to-LinkedIn resolution, ICP scoring, job board scanning, and a combined signals aggregator. Built for outbound sales workflows.111111MIT

industrylens-mcpofficial
Flicense-qualityCmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
Sociality MCPofficial
Alicense-qualityDmaintenanceSocial media analytics, post insights, and competitor benchmarking for AI agents.6MIT- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.1901MIT