-
Notifications
You must be signed in to change notification settings - Fork 0
Agent Usage
dev-mondoshawan edited this page Feb 3, 2026
·
1 revision
The MCPShield agent is a Python CLI tool that scans your machine for MCP server configurations and reports them to the central dashboard.
cd agent
pip install -e .Set up the agent with your API key from the dashboard:
mcpshield configure --api-key mcp_sk_YOUR_KEY --api-url http://localhost:8000Scan for MCP servers and report to the backend:
mcpshield scanScan without sending data to the backend:
mcpshield scan --dry-runCheck agent configuration status:
mcpshield statusList discovered servers locally:
mcpshield list| OS | Path |
|---|---|
| Windows | %LOCALAPPDATA%\MCPShield\config.json |
| macOS | ~/Library/Application Support/MCPShield/config.json |
| Linux | ~/.config/mcpshield/config.json |
The agent scans these paths for MCP configurations:
%APPDATA%\Claude\claude_desktop_config.json%APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json%APPDATA%\Windsurf\mcp_settings.json
~/Library/Application Support/Claude/claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json~/.config/cursor/mcp.json
MCP Servers Found:
┌────────────┬─────────────────────────────────────────┬────────┬───────┐
│ Name │ Type │ Risk │ Score │
├────────────┼─────────────────────────────────────────┼────────┼───────┤
│ filesystem │ @modelcontextprotocol/server-filesystem │ medium │ 35 │
│ postgres │ unknown │ medium │ 35 │
│ github │ @modelcontextprotocol/server-github │ low │ 15 │
└────────────┴─────────────────────────────────────────┴────────┴───────┘
Getting Started
User Guide
Technical
Development