AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Scanner Mcp

mcp-chrisipanaque-scanner-mcp · by chrisipanaque

MCP server that scans C++ repositories. File listing, AST code extraction, dependency graph, and importance ranking for AI coding agents.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add mcp-chrisipanaque-scanner-mcp

✓ 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 No
  • 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-chrisipanaque-scanner-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Scanner Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

scanner-mcp

An MCP server that scans C++ repositories and exposes 4 tools for AI agents


Features

  • scan_files — list all files (path, extension, size) via lightweight filesystem walk
  • scan_code — extract includes, classes, structs, functions, namespaces via tree-sitter AST
  • getfileconnections — forward/reverse dependency graph between files
  • getfilerankings — importance scoring by deps, symbols, and include frequency
  • Shared cache — first call to any tool parses the repo; subsequent calls return instantly

Setup for agents

Clone and build (requires CMake ≥ 3.14 — install from https://cmake.org/download/):

git clone 
cd scanner-mcp
cmake -B build && cmake --build build

Then add to opencode.json:

{
  "mcp": {
    "scanner-mcp": {
      "type": "local",
      "command": ["/absolute/path/to/scanner-mcp/build/scanner-mcp"],
      "enabled": true
    }
  }
}

Tools

| Tool | Arguments | Returns | |---|---|---| | scan_files | path (req) | { files: [{ path, extension, size }] } | | scan_code | path (req), refresh | { code: [{ file, includes, classes, structs, functions, namespaces }] } | | get_file_connections | path (req), refresh | { file_connections: { forward, reverse } } | | get_file_rankings | path (req), refresh | { file_rankings: [{ path, score, incoming_deps, outgoing_deps, symbols, include_freq }] } |

scan_files walks the filesystem only — no parsing, no cache, always fast. scan_code, get_file_connections, and get_file_rankings share a cache keyed by absolute path. The first call parses the repo once; subsequent calls return instantly. Set refresh: true to bust the cache when files change.

Requirements

  • CMake ≥ 3.14
  • C++17 compiler (GCC 9+, Clang 10+, Apple Clang 14+)
  • Linux (x86_64)

Architecture

FILE DISCOVERY      → walk, filter, metadata                   scan_files
CODE EXTRACTION      → includes, symbols via tree-sitter AST   scan_code
DEPENDENCY ANALYSIS  → forward/reverse connections             get_file_connections
IMPORTANCE RANKING   → scoring heuristics                      get_file_rankings

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.