AgentStack
MCP verified MIT Self-run

Mcprobe

mcp-alexlaguardia-mcprobe · by AlexlaGuardia

Probe any MCP server from your terminal. List tools, inspect schemas, call endpoints.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add mcp-alexlaguardia-mcprobe

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Mcprobe? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

mcprobe

You're building an MCP server. You want to see what tools it exposes, test a call, debug a schema. You don't want to wire up a full client just to do that.

mcprobe is the missing curl for MCP. Connect to any server, list its tools, call them, inspect schemas. From your terminal.

Install

pip install mcprobe

Usage

List the tools on a server:

mcprobe tools http://localhost:8100/sse
┌──────────────────────────────────────────────────┐
│  #  │ Tool              │ Description            │
├──────────────────────────────────────────────────┤
│  1  │ health            │ Full system status     │
│  2  │ query             │ Run SELECT queries     │
│  3  │ cortex_signal     │ Log observations       │
│ ... │                   │                        │
└──────────────────────────────────────────────────┘
70 tools available

Inspect a tool's schema:

mcprobe inspect http://localhost:8100/sse cortex_signal

Call a tool:

mcprobe call http://localhost:8100/sse health
mcprobe call http://localhost:8100/sse query -a '{"sql": "SELECT count(*) FROM clients"}'

Check a server is alive:

mcprobe ping http://localhost:8100/sse

Commands

| Command | What it does | |-----------|---------------------------------------| | tools | List all tools (add -v for schemas) | | inspect | Full schema for one tool | | call | Call a tool with JSON args | | ping | Check the server responds |

Transports

mcprobe auto-detects SSE (/sse) and streamable HTTP (/mcp) endpoints. No flags needed.

Why

MCP servers are everywhere now. There was no quick way to look inside one without reading source or writing a client. This is that quick way.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.