Shadow AI List
Server Details
Risk-ranked registry of AI tools: look up an AI tool's risk or check if a domain is shadow AI.
- 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.1/5 across 4 of 4 tools scored.
Each tool serves a clearly distinct purpose: check_domain_against_registry verifies domains, get_top_risky_ai returns ranked risk, list_shadow_ai provides a filterable list, and lookup_ai_tool_risk retrieves detailed info by name/vendor/domain. No two tools overlap in a way that would cause selection confusion.
All tool names follow a consistent verb_noun pattern using snake_case: check_, get_, list_, lookup_. The verbs accurately describe each action and the pattern is uniform across the set.
With 4 tools, the server is well-scoped for a read-only registry. Each tool covers a distinct query type without being overly redundant or too sparse. This is an appropriate size for the intended purpose.
The server covers the core operations: domain checking, listing, top-risk ranking, and detailed lookup. A minor gap is the lack of a way to discover available categories for filtering, since list_shadow_ai accepts a category parameter but no tool enumerates them. Overall, the surface is nearly complete for a registry lookup service.
Available Tools
4 toolscheck_domain_against_registryCheck if a domain is shadow AIARead-onlyInspect
Check whether a domain or subdomain belongs to a known AI tool - i.e. whether traffic to it is shadow AI. Returns the tool and its risk if matched. Covers the free top 100.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | A domain or URL, e.g. 'chat.openai.com' or 'https://cursor.sh'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds useful behavioral details beyond that: it returns the matched tool and risk, and only if matched. It also discloses coverage ('Covers the free top 100'), which is a meaningful limitation. It does not describe no-match behavior or edge cases, but for a safe read-only tool this is reasonable.
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 two focused sentences. The first states the action and purpose, the second adds return behavior and scope. No filler or redundant content, and it is front-loaded.
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?
For a single-parameter, read-only tool with no output schema, the description covers the key points: what it checks, what it returns when matched, and its coverage limit. Minor gaps include the exact output structure and behavior when no match is found, but these are not critical for tool selection.
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 100% coverage with a clear parameter description and example ('A domain or URL, e.g. "chat.openai.com" or "https://cursor.sh"'). The description adds no additional parameter semantics beyond the schema, so the baseline of 3 applies.
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 uses a specific verb ('Check whether') and clearly identifies the resource ('domain or subdomain belongs to a known AI tool'). It distinguishes itself from siblings by being domain-oriented rather than listing or top-risk oriented, and adds scope ('Covers the free top 100').
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 clearly implies when to use the tool: when you have a domain/URL and want to determine if traffic to it is shadow AI. It does not explicitly name alternatives or when-not-to-use scenarios, but the context is unambiguous enough for an agent to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_top_risky_aiGet the highest-risk AI toolsARead-onlyInspect
Get the highest-risk AI tools by AI Exposure Index risk score. Returns name, domain, category, and risk score + band. Covers the free top 100.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many (default 10, max 25). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds the 'free top 100' scope and notes the returned fields (name, domain, category, risk score + band). This provides some context beyond annotations, but does not disclose other behaviors like pagination or rate limits. It adds moderate value without contradiction.
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 three short, front-loaded sentences: purpose, return fields, and scope. Every sentence adds distinct value with no redundancy or filler.
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?
For a simple read-only list operation with one optional parameter and no output schema, the description covers return fields, the sorting basis (highest risk), and the universe (free top 100). It is sufficiently complete, though it could mention sorting order or limit behavior explicitly.
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 100% coverage for the only parameter 'limit', including default and max, so the description does not need to elaborate. The description adds no additional parameter context, keeping the baseline score of 3.
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 returns the highest-risk AI tools ranked by AI Exposure Index risk score. It specifies the resource (AI tools), the metric (risk score), and the output fields, distinguishing it from siblings that list all shadow AI or look up specific tools.
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 implies usage when you need a ranked list of risky AI tools, but does not explicitly mention when to prefer this over sibling tools like list_shadow_ai or lookup_ai_tool_risk. No exclusions or alternative guidance are provided, so guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_shadow_aiList AI toolsARead-onlyInspect
List AI tools from the registry, optionally filtered by category. Returns name, domain, category, and risk band. Covers the free top 100.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 25, max 100). | |
| category | No | Optional category filter (e.g. 'coding', 'chatbot', 'meeting_transcription'). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so the read-only nature is established. The description adds useful context beyond annotations by clarifying the result scope ('Covers the free top 100') and the output fields, which is valuable given 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences with no fluff. It front-loads the primary action and includes relevant output details and scope in the second sentence.
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?
For a simple list tool with complete schema coverage, annotations, and no output schema, the description provides enough context: what is returned, optional filtering, and scope. It could be slightly more explicit about ordering or pagination, but the current description is sufficiently complete for selection and invocation.
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 100% parameter coverage with descriptions for both limit and category. The description reiterates category filtering but does not add extra semantic meaning beyond the schema, such as behavior of the limit default or category examples.
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's purpose: listing AI tools from the registry with optional category filtering. It specifies the returned fields (name, domain, category, risk band) and scope (free top 100), which distinguishes it from sibling tools like lookup_ai_tool_risk that target specific lookups.
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 implies when to use it: when you need a list of AI tools from the registry, optionally filtered by category. However, it does not explicitly mention alternatives or exclusion cases, such as using lookup_ai_tool_risk for a specific tool or get_top_risky_ai for risk-focused ranking.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_ai_tool_riskLook up an AI tool's riskARead-onlyInspect
Look up an AI tool by name, vendor, or domain and return its AI Exposure Index risk score, risk band, category, and whether it trains on user data. Covers the free top 100.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Tool name, vendor, or domain (e.g. 'Cursor', 'OpenAI', 'cursor.sh'). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds useful behavioral context: the 'free top 100' coverage limitation, which affects results when the tool is not in that set. It does not contradict annotations. It goes beyond simple read-only disclosure with this scope constraint.
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?
Two concise sentences. The first states purpose and outputs, the second states the coverage limit. No unnecessary words, front-loaded with the action and resource.
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's simplicity (one param, no output schema, no nested objects), the description is complete. It lists all key return fields and the coverage limitation. An agent can confidently invoke the tool based on this description alone.
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 coverage is 100%, and the query parameter description already explains the accepted values. The tool description restates 'name, vendor, or domain', which matches the schema, but adds no new parameter-specific meaning beyond what the schema provides. Baseline 3 is appropriate.
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 uses the specific verb 'look up' and clearly identifies the resource (AI tool) and the exact data returned (risk score, risk band, category, training on user data). It distinguishes itself from siblings like list_shadow_ai or get_top_risky_ai by focusing on querying a specific tool by name/vendor/domain.
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 implies clear usage: use this when you need risk details for a particular AI tool by name, vendor, or domain. It provides context without explicit alternatives or exclusions, but the scope limitation ('free top 100') gives practical guidance. It does not name sibling tools as alternatives, so not a 5.
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
- Flicense-qualityCmaintenanceMachine-readable directory of AI products that register themselves, plus an agent-readability grader for any URL.Last updated
- AlicenseAqualityCmaintenanceURL intelligence for AI agents. One URL in, structured security and data quality signals out across 7 dimensions. 13 tools, risk score 0-100 with 23 configurable weights.Last updated16781MIT
- Alicense-qualityBmaintenanceProvides 62 AI governance tools for compliance with regulations like the EU AI Act, enabling risk management, transparency, bias detection, and more.Last updatedMIT
- Alicense-qualityAmaintenanceVendor sovereignty scanner for EU AI Act compliance. Scans provider stacks for CLOUD Act exposure, data residency, and GDPR DPA status across 55 providers, then suggests EU-native alternatives. Free, no account required.Last updated151MIT