🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@agentguard47/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agentguard47/mcp-server

MCP server for coding-agent traces, alerts, costs, usage, and budget health

Source
npmnpm
Version
0.2.1
Version published
Weekly downloads
50
35.14%
Maintainers
1
Weekly downloads
 
Created
Source

AgentGuard MCP Server

MCP (Model Context Protocol) server that connects coding agents to the AgentGuard Read API. It lets agents inspect their own traces, alerts, usage, costs, and saved spend after the local SDK is already in place.

The boundary is deliberate:

  • The SDK proves runtime enforcement locally
  • The MCP server gives coding agents a narrow read surface over retained data
  • The hosted dashboard stays the operational control plane

Published Package

npx -y @agentguard47/mcp-server

Tools

ToolDescription
query_tracesSearch recent traces, filter by service/time range
get_traceGet the full event tree for a specific trace ID
get_alertsGet guard alerts such as loops, budget exceeded, and errors
get_usageCheck event quota usage and plan limits
get_costsGet cost breakdown by model for the current month
check_budgetQuick pass/fail budget health check

Configuration

VariableRequiredDescription
AGENTGUARD_API_KEYYesBearer token for the Read API (ag_...)
AGENTGUARD_URLNoAPI base URL (defaults to production)

Setup for Claude Code

Add to your Claude Code MCP config:

{
  "mcpServers": {
    "agentguard": {
      "command": "npx",
      "args": ["-y", "@agentguard47/mcp-server"],
      "env": {
        "AGENTGUARD_API_KEY": "ag_your_key_here"
      }
    }
  }
}

Any other MCP-compatible client that can launch an npm package over stdio can use the same command.

Local Build & Run

npm ci
npm run build
npm start

Registry Readiness

This repo now includes official MCP registry metadata in server.json. The npm package is already public, so the remaining registry work is metadata publication:

mcp-publisher login github
mcp-publisher publish

After that, verify the server is searchable from the MCP Registry API and then submit it to downstream directories like Glama and awesome-mcp-servers.

Architecture

  • src/index.ts - Server entry point, tool registration (stdio transport)
  • src/client.ts - HTTP client wrapping /api/v1/ endpoints
  • src/tools.ts - 6 MCP tool definitions and handlers

Keywords

mcp

FAQs

Package last updated on 02 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts