agentscore-mcp-server
@agentscore-xyz/mcp-server
MCP security trust layer. Scan packages, get trust verdicts, inspect repo-wide MCP dependencies, generate Policy Gate setup, install the CI workflow directly, check incident exposure, and query the abuse database. Eight tools for MCP security decisions. No API key, zero config.
Scan any MCP package for security issues: agentscores.xyz
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"agentscore": {
"command": "npx",
"args": ["-y", "@agentscore-xyz/mcp-server"]
}
}
}Cursor / Any MCP Client
npx @agentscore-xyz/mcp-serverRelated MCP server: depguard
What This Does
Your AI can now make security decisions about MCP packages:
You: "Is exa-mcp-server safe to install?"
Claude: calls get_verdict "Verdict: ALLOW. Score 90/100, LOW risk. No provenance attestations (published by personal account). 9 tools exposed including web_search_exa and crawling_exa."
You: "The axios package was compromised. Which MCP servers are affected?"
Claude: calls check_exposure "Multiple monitored MCP servers depend on axios, including exa-mcp-server, tavily-mcp, and figma-mcp."
You: "Scan @azure-devops/mcp for security issues"
Claude: calls scan_package "Score 75/100, MODERATE risk. Found: preinstall script modifying npm registry config. No provenance attestations."
You: "Check this repo for MCP dependencies"
Claude: calls check_my_repo "MCP dependencies found: 5. Two are warnings. Run generate_policy_gate_setup to turn these checks into a CI gate."
You: "Set up AgentScore Policy Gate for this repo"
Claude: calls install_policy_gate "The workflow file is written to
.github/workflows/agentscore-policy-gate.yml. Commit and push. GitHub OIDC will auto-provision the repo on first run."
Available Tools
Tool | What it does |
| Full security scan: install scripts, prompt injection, source code patterns, provenance posture, MCP tool extraction |
| Trust decision: allow, warn, or block based on scan findings. Also reports monitoring status and publisher posture. |
| Inspect the current repo for MCP dependencies and summarise verdicts for every package detected locally. |
| Generate the exact OIDC-based GitHub Actions workflow needed to enforce Policy Gate in CI. |
| Write |
| Incident response: which monitored MCP servers depend on a given package? |
| Query the KYA abuse database for reported packages or agents |
| Check if a package is under continuous monitoring and get scan history |
From Ad-Hoc Scans To CI Enforcement
The MCP server now bridges one-off package checks into the sticky product:
Run
check_my_repoto see every MCP package used in a repo.Run
generate_policy_gate_setupto preview the OIDC-based GitHub Actions workflow.Run
install_policy_gateto write the workflow file directly into the repo.Commit and push. The first run auto-provisions through GitHub OIDC.
That turns "is this package safe?" into "this repo now enforces MCP dependency policy on every PR."
Risk Levels
Score | Risk | Meaning |
85-100 | LOW | Clean or minor issues only |
70-84 | MODERATE | Some findings, review recommended |
50-69 | ELEVATED | Significant findings, use with caution |
30-49 | HIGH | Serious issues, not recommended |
0-29 | CRITICAL | Do not use |
What the Scanner Checks
Install scripts (postinstall/preinstall hooks with network calls or code execution)
Prompt injection patterns in package metadata
Suspicious URLs (sketchy TLDs, ngrok, raw IPs)
Source code patterns (command injection, unsafe eval, hardcoded secrets)
Publisher provenance (trusted publishing, attestations)
Dependency count and metadata completeness
MCP tool definitions extracted from published source
Monitoring
AgentScore continuously monitors hundreds of MCP packages. The check_exposure and monitor_status tools use this live dataset. When a package like axios gets compromised, you can instantly find which MCP servers are affected.
Links
Website: agentscores.xyz
API Docs: agentscores.xyz/docs
Methodology: agentscores.xyz/methodology
Licence
MIT
Available Tools
8 toolscheck_abuseA
Check if a package or agent has been reported to the KYA abuse database. Returns whether abuse has been reported and any details.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | Yes | Package name or agent identifier to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for behavioral disclosure. It only states it checks the database and returns abuse status/details, but does not mention side effects, auth requirements, or whether it's read-only. The description is minimal, providing no behavioral traits beyond the basic operation.
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 sentences long, which is concise and to the point. It front-loads the core purpose and then specifies the output. No unnecessary words, though it could be slightly more structured (e.g., bullet points for clarity).
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 simplicity (one parameter, no nested objects, no output schema), the description is adequate but lacks details about the output format or any error conditions. It mentions 'returns whether abuse has been reported and any details' but does not specify the structure. For a simple lookup tool, this is minimally complete, but it could be more informative about the returned data.
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 schema has 100% coverage for the single parameter 'agent', describing it as 'Package name or agent identifier to check'. The description adds context by explaining the purpose of the parameter (used to check against the abuse database) and the return indicates it relates to abuse reports. Since the schema already documents the parameter well, the description adds marginal value but clarifies the domain.
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 specific verb 'Check' and resource 'abuse database', indicating that the tool looks up a package or agent against the KYA abuse database. It distinguishes itself from siblings like check_exposure by specifying the database type and the returned information (whether abuse was reported and details).
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 the tool (when you want to know if a package/agent is in the abuse database) but does not provide guidance on when not to use it or alternatives. Siblings like check_exposure or get_verdict might be used for related but different checks, but no comparison is made.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_exposureA
Check which monitored MCP servers depend on a given package. Use this during incident response to find blast radius. Example: 'which MCP servers use axios?'
| Name | Required | Description | Default |
|---|---|---|---|
| npm | Yes | npm package name to check exposure for (e.g. 'axios') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description is transparent about the tool's purpose and provides an example query. It discloses that the tool checks dependencies on MCP servers, which implies it reads data without modification. No annotations are provided, so the description carries the full burden, and it adequately informs.
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 sentences long, each sentence providing essential information: purpose and usage guidance. It is concise with no wasted words.
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 tool with one required parameter and no output schema, the description is sufficiently complete. It explains the tool's function, usage context, and provides an example. Slight deduction for not describing the output format, but that is not critical.
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 already has a clear description for the parameter 'npm', and the tool description adds an example ('axios') and context about what the parameter means. Since schema coverage is 100%, the description provides extra value beyond the 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 checks which monitored MCP servers depend on a given package, with a specific verb (check) and resource (exposure of MCP servers). It is distinct from siblings like check_abuse or scan_package.
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 includes a usage context: 'Use this during incident response to find blast radius.' This indicates when to use the tool, though it doesn't explicitly state when not to use it or mention alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_my_repoA
Inspect the current repo for MCP dependencies, look up AgentScore verdicts for each package, and summarise what should be gated in CI. Use this when a developer wants to understand all MCP packages in a repo instead of scanning one package at a time.
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Optional path to the repo root. Defaults to the current working directory. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the key behavioral trait: it performs a bulk scan of the repo, looking up verdicts from AgentScore, and produces a summary for CI gating. It does not explicitly mention side effects (likely none), but the behavior is clearly described.
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 a single sentence that is concise and front-loaded with the essential action, followed by usage guidance. Every word earns its place.
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 low complexity (1 optional parameter, no output schema), the description adequately covers what the tool does and when to use it. No output schema means the description does not need to explain return values, but it could hint at the output format (e.g., a report). Still, it's complete enough for its complexity level.
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 100% (the single parameter 'path' is described). The description adds no additional detail beyond the schema's description, so a baseline of 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 clearly states the tool's purpose: inspect a repo for MCP dependencies, look up AgentScore verdicts, and summarise what should be gated in CI. It uses specific verbs ('inspect', 'look up', 'summarise') and a clear resource ('the current repo'). It also differentiates from scanning one package at a time.
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 explains when to use this tool ('when a developer wants to understand all MCP packages in a repo instead of scanning one package at a time'), which provides context compared to alternatives like scan_package. However, it does not explicitly mention when not to use it or list specific alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_policy_gate_setupA
Generate the exact GitHub Actions workflow needed to enforce AgentScore Policy Gate for a repo. Detects MCP dependencies locally and returns the OIDC-based YAML needed for setup. No API key or secret is required.
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Optional path to the repo root. Defaults to the current working directory. | |
| repo_url | No | Optional repository URL override for the pilot handoff link. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description must carry weight. It discloses key behaviors: requires no API key, detects MCP dependencies locally, returns YAML. Lacks details on side effects (none expected) or error cases.
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 sentences efficiently convey purpose, method, and a key constraint. No wasted words.
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 generates YAML and has no output schema, the description adequately covers inputs and key behavioral traits. Could include more about output format, but sufficient for agent decision-making.
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% with descriptions for both params. Description adds context about defaults and purpose of repo_url, but does not significantly extend beyond 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?
Description clearly states the verb 'Generate', resource 'GitHub Actions workflow', and purpose 'enforce AgentScore Policy Gate'. It distinguishes from siblings by specifying local dependency detection and OIDC-based YAML setup.
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?
Description implies when to use (setting up Policy Gate) and highlights that no API key or secret is required, but does not explicitly state when not to use or reference sibling alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_verdictA
Get a trust verdict for an MCP package: allow, warn, or block. Based on scan findings (score and severity). Also reports monitoring status and publisher posture. Use this before installing or connecting to an MCP server.
| Name | Required | Description | Default |
|---|---|---|---|
| npm | Yes | npm package name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It explains the output types (allow/warn/block, monitoring status, publisher posture) and ties them to scan findings. However, it does not disclose whether the tool has side effects, requires authentication, or has rate limits. Since annotations are absent, the description carries the full burden but provides only partial transparency.
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 sentences long, each packed with essential information: purpose, output details, and usage guidance. No filler or redundancy. Front-loaded with the main action.
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 low complexity (1 parameter, no nested objects, no output schema), the description adequately covers the tool's purpose and usage. The output is described qualitatively (allow/warn/block, monitoring status, publisher posture). However, without an output schema, the description could be more precise about the structure of the return value.
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% with one parameter 'npm' described as 'npm package name.' The description adds meaning by specifying the package is an MCP package and that the verdict is based on scan findings, going beyond the schema's minimal description.
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 retrieves a trust verdict (allow, warn, block) for an MCP package, based on scan findings, and also reports monitoring status and publisher posture. It uses a specific verb ('get') and resource ('trust verdict for MCP package'), and distinguishes it from sibling tools like 'scan_package' (which likely performs the scan) and 'check_abuse' (which checks for abuse specifically).
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 states 'Use this before installing or connecting to an MCP server,' providing clear context for when to invoke the tool. However, it does not explicitly state when not to use it or name alternative tools for similar purposes, though the sibling tools suggest alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
install_policy_gateA
Write the AgentScore Policy Gate workflow file to this repo. Creates .github/workflows/agentscore-policy-gate.yml with OIDC authentication (no API key needed). Detects MCP dependencies and includes them in the workflow. The gate will auto-provision the repo on first push.
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Optional path to the repo root. Defaults to the current working directory. | |
| repo_url | No | Optional repository URL override. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behaviors: file creation, OIDC authentication (no API key), dependency detection, and auto-provisioning. Since no annotations are provided, the description carries the full burden, and it does well by explaining what happens on first push.
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 very concise: two sentences that cover purpose, authentication, dependency detection, and auto-provisioning. No wasted words.
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 simplicity of the tool (two optional parameters, no output schema), the description covers the necessary context: what is created, how authentication works, and side effects. It is complete enough for the agent to use correctly.
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?
Both parameters are fully described in the input schema (100% coverage). The description does not add any additional semantic meaning beyond what the schema already provides, so baseline score of 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 clearly states the tool writes a specific workflow file (AgentScore Policy Gate) to the repo, with distinctive details like OIDC authentication and auto-provisioning on first push. It distinguishes itself from siblings by focusing on a specific file creation task.
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 the tool is for setting up the policy gate workflow, which is a one-time setup. It doesn't explicitly state when not to use it or provide alternatives, but the context of setup is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
monitor_statusA
Check if an MCP package is under continuous monitoring and get its scan history. Shows current score, risk level, and recent changes.
| Name | Required | Description | Default |
|---|---|---|---|
| npm | Yes | npm package name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses that the tool is read-only ('Check') and lists outputs, but does not mention what happens if the package is not monitored (e.g., error vs. empty result) or any side effects. Adequate but not comprehensive.
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 sentences, front-loads the main action, and every word adds value. No extraneous 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?
The tool has only one parameter and no output schema. The description clearly explains what it does and what outputs to expect. It is complete for the tool's simplicity, though it could hint at return format or edge cases.
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% for the sole parameter 'npm', and its description 'npm package name' is clear. The description reinforces the parameter by stating 'Check if an MCP package' which aligns with the 'npm' parameter.
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 verb 'Check' and the resource 'MCP package' under monitoring, and specifies what it returns: 'current score, risk level, and recent changes'. It distinguishes from siblings by focusing on monitoring status rather than abuse, exposure, or scanning.
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 (when needing monitoring status), but does not explicitly state when not to use or provide alternatives among siblings. Given sibling tools like scan_package and get_verdict, some guidance on differentiation would improve usage clarity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_packageA
Scan an npm package for MCP security issues. Checks install scripts, prompt injection patterns, suspicious URLs, source code patterns, dependency count, metadata completeness, and publisher provenance. Returns score (0-100), risk level, and detailed findings.
| Name | Required | Description | Default |
|---|---|---|---|
| npm | Yes | npm package name (e.g. 'exa-mcp-server', '@modelcontextprotocol/server-github') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description clearly explains the scanning scope (install scripts, prompt injection, etc.) and output format without annotations. It does not mention side effects or permissions, but as a read-only scan, it's transparent enough.
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 concise (three sentences) and front-loaded with the main action. It provides enough detail without verbosity. Could be slightly improved by removing the redundant 'Returns score...' since that's implied by 'security issues'.
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 a simple tool with one parameter, no output schema, and no annotations, the description provides sufficient context about what is checked and what is returned. It is complete for its complexity level.
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 description does not add details beyond the schema for the single parameter 'npm'. Schema coverage is 100%, so baseline 3 is appropriate; the description's mention of npm package names with examples adds minor value.
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 scans an npm package for MCP security issues, specifying what it checks (install scripts, prompt injection, etc.) and what it returns (score, risk level, detailed findings). It distinguishes itself from sibling tools like check_abuse that likely focus on other aspects.
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 (scanning npm packages for security) but does not explicitly state when not to use it or compare to siblings. It lacks guidance on alternatives, e.g., using get_verdict for final decisions.
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.
8 tool updates
v2.2.0- First observed
check_abuse - First observed
check_exposure - First observed
check_my_repo - First observed
generate_policy_gate_setup - First observed
get_verdict - First observed
install_policy_gate - First observed
monitor_status - First observed
scan_package
TDQS
Most tools have distinct purposes: scanning, checking verdicts, monitoring, policy enforcement, etc. However, 'install_policy_gate' and 'generate_policy_gate_setup' are closely related (generate vs write workflow), which could cause misselection. Also, 'check_abuse' and 'get_verdict' both return trust-related info but from different sources, which is fine.
Tools use a consistent verb_noun pattern: check_abuse, check_exposure, generate_policy_gate_setup, etc. The only minor inconsistency is 'install_policy_gate' where 'install' could be seen as more specific than 'generate', but still follows the pattern. No mixing of camelCase or other styles.
8 tools is appropriate for an MCP package security server. Each tool covers a core function: scanning, verdict, monitoring, abuse check, exposure analysis, repo check, and policy gate generation/installation. Neither too few nor too many.
The tool set covers key lifecycle operations: scan, get verdict, monitor, check abuse, check exposure, and policy enforcement (generate+install). Missing tools could include updating a verdict or removing a policy gate, but the core workflow is well-covered.
Maintenance
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
Supply chain risk scoring for npm, PyPI, Cargo, and Go. 9 tools. Behavioral signals.
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
npm MCP — wraps the npm Registry API (free, no auth)
Security research: MCP registries verify identity, not tool behavior. See gtfo.dev.
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server for npm package management — publish, install, audit, search, security & dependency health38551MIT
- AlicenseAqualityAmaintenanceMCP security server for AI coding agents. 12 tools: pre-install guardian, vulnerability audit, supply-chain attack detection via static code analysis, and CycloneDX 1.6 SBOM generation. Zero runtime dependencies.144315Apache 2.0
- AlicenseAqualityDmaintenanceThe only MCP that returns license + supply-chain risk + popularity + price in a single call. 78,094 curated Git assets. Zero config. MIT. Free forever.14401MIT
- AlicenseNot gradedqualityCmaintenanceSecurity scanner and trust verification layer for MCP ecosystem, enabling users to scan PyPI packages and GitHub repos for secrets, dangerous patterns, and prompt injection vectors, and compare security scores.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Thezenmonster/agentscore-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server