scout-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@scout-mcpverify the attestation for the GitHub MCP server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Contents
Getting started
Install —
go install, the container image, and an MCP host configurationRequirements — scout itself, and the Go floor to build from source
Quick Start — ask the agent to evaluate a local server
The scout-mcp ecosystem
The scout-mcp ecosystem —
scout,scout-reporting,scout-action,scout-mcp,scout-lsp,scout-censusat a glance
Reference
Capabilities at a glance — the three tools and the protocol surface
Ecosystem comparison — beside running scout yourself
Benchmarks — what the server adds to a run
Features — the allowlist, no credentials, read-only
Configuration — two flags and their environment variables
Examples — tool calls and results
Operational
When not to use scout-mcp — limitations
Development — make targets, CI
Security — what an agent can and cannot make it do
Documentation — all reference docs
Stability guarantees — tool names, arguments and results
Related MCP server: srv-explore
Install
scout_check runs the scout program. scout must be installed and on
PATH, or named with --scout, for that tool to work; the container
image carries it. scout_verify_attestation needs nothing but scout-mcp.
As a Go program
go install github.com/sebastienrousseau/scout-mcp/cmd/scout-mcp@v0.0.7
go install github.com/sebastienrousseau/scout/cmd/scout@v0.0.7Release binaries for Linux, macOS and Windows on amd64 and arm64 are on the releases page, with signed checksums and SLSA provenance.
As a container image
docker pull ghcr.io/sebastienrousseau/scout-mcp:0.0.7The image is scout's own release image with scout-mcp added: distroless,
non-root, linux/amd64 and linux/arm64, with scout at /usr/local/bin/scout
and scout-mcp started with --scout pointing at it.
In an MCP host
scout-mcp speaks MCP over stdio, so a host starts it as a child process.
For Claude Desktop (claude_desktop_config.json), Claude Code (.mcp.json)
and other hosts that read an mcpServers block:
{
"mcpServers": {
"scout": {
"command": "scout-mcp",
"args": ["--allow", ".internal.example.com"]
}
}
}With the container image instead:
{
"mcpServers": {
"scout": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/sebastienrousseau/scout-mcp:0.0.7"]
}
}
}Inside a container, loopback is the container itself. To evaluate a server
on the host, run the container with --network host on Linux, or point at
host.docker.internal and add -e SCOUT_MCP_ALLOW=host.docker.internal
to the arguments.
The server is listed in the official MCP Registry as
io.github.sebastienrousseau/scout-mcp; server.json is
that listing.
Requirements
Requirement | Floor | Enforced by |
scout | on | CI builds scout at that tag and evaluates this server with it |
Go (building from source) | the | CI tests on that version and on latest stable, on Linux, macOS and Windows |
An MCP host | any that starts stdio servers and speaks revision 2025-03-26 or later | the handshake negotiates 2025-11-25, 2025-06-18 or 2025-03-26, and 2026-07-28 through |
The server under test | a Streamable HTTP endpoint on the allowlist |
|
The Go floor is raised only when a release needs a language feature, on a patch release like everything else pre-1.0, and the changelog says so.
Quick Start
go install github.com/sebastienrousseau/scout-mcp/cmd/scout-mcp@v0.0.7
go install github.com/sebastienrousseau/scout/cmd/scout@v0.0.7
claude mcp add scout -- scout-mcpThen, with an MCP server of your own listening on
http://127.0.0.1:3000/mcp, ask the agent:
Evaluate my MCP server at http://127.0.0.1:3000/mcp with scout and fix what fails.
The agent calls scout_check, which runs
scout check http://127.0.0.1:3000/mcp --auth none --output json and
returns the score, the grade and every failing check with its detail and a
link to the fix. Loopback needs no configuration; any other host must be
named with --allow first.
The scout-mcp ecosystem
One engine, three surfaces, five satellites. This repository is the distribution surface: its deliverable is a registry listing, so scout is where agents look for tools.
Component | Purpose | Use case |
The engine, every check, and the CLI, TUI and web surfaces (GPL-3.0-only) | Evaluate a server and write the statement | |
The attestation format, its schema and the offline verifier (Apache-2.0) | Gate on a statement in a gateway, registry or pipeline | |
The GitHub Action and GitLab template wrapping the published image by digest (Apache-2.0) | Run scout in CI without installing it | |
| scout's diagnostics as read-only MCP tools (GPL-3.0-only) | Evaluate a server from inside an editor |
| A language server over MCP artefacts (planned) | Hover a check id for its remediation |
| The published reliability census (planned) | Reproduce the numbers |
The family manifest lives in scout at
docs/ecosystem.md;
make family checks this repository's row against it. Every lockstep
repository carries scout's version; this one wraps scout's release, so its
version is scout's latest, exactly.
Capabilities at a glance
Area | Capability | Status |
Evaluate |
| Stable |
Verify |
| Stable |
Identify |
| Stable |
Results | Text for the agent, plus | Stable |
Protocol | stdio; handshake 2025-11-25, 2025-06-18, 2025-03-26; | Stable |
Servers that are programs ( | not through a tool; run | Out of scope |
Credentials | never sent; every run is | Out of scope by design |
Ecosystem comparison
The alternative is running scout in a terminal and pasting the report into the conversation, or poking the server by hand in an inspector. scout-mcp is the first with the decisions made for an agent: which hosts it may reach, that no credential travels, and a result sized for a context window.
Approach | An agent can call it | Targets limited by the operator | Scored, with remediation links |
scout-mcp | yes | yes — loopback unless | yes |
| no | the operator types the URL | yes |
no — a UI for a person | the operator types the URL | no |
Benchmarks
The server adds a process start and a JSON round trip to a run; the run itself is scout's, and bounded at five minutes. Measured with hyperfine on the binaries built from this tree.
Scenario | Result | Environment |
Start, | 16 ms mean | Apple A18 Pro, Go 1.27.1, 2026-09-24 |
scout's full stdio evaluation of scout-mcp | 94 ms mean | same |
| scout's own timings, in its report | the target server |
Features
An allowlist, on by default and narrow. With no configuration,
scout_check evaluates loopback addresses only: localhost, any
*.localhost name, and loopback IPs. --allow names more hosts, exactly
or as .example.com for every subdomain (not the apex). scout makes real
requests to the endpoint it is given, and an agent choosing that endpoint
from a prompt is exactly the situation in which a request should not go
anywhere the operator did not name. A URL that is not http or https, or
that carries credentials in it, is refused before scout runs.
No credentials. Every run is scout check <endpoint> --auth none, with
SCOUT_CONFIG pointing at an empty configuration file, so no profile or
defaults block the operator wrote for their own use can add a credential,
switch on mutations or redirect the report. The operator's secrets do not
travel to wherever an agent points scout.
Read-only, twice. Every tool here is annotated readOnlyHint: true.
And no flag that allows a mutating tool is ever passed to scout, so scout
invokes only the evaluated server's tools that declare readOnlyHint.
scout, not a copy of it. scout-mcp runs the scout program and reads
the JSON report it prints; it does not link scout's engine. The version
scout_version reports is whatever scout version says, and every safety
property scout has holds, because the server can only ask for what scout's
own flags allow.
Answers an agent can act on. A failing check comes with its id, severity, detail and a documentation link. A statement that does not verify is a result saying why, not a tool error. A server that fails everything returns the first 25 failures and says it truncated.
Configuration
Flag | Environment | Default | Meaning |
|
| empty: loopback only | Hosts |
|
|
| Path of the scout program |
| — | — | Print the version and exit |
| — | — | Print a completion script for |
A flag overrides its environment variable. Nothing else is read: scout itself runs with an empty configuration file, whatever the operator's own scout configuration says.
Shell completions come from the flag set, so they list every flag:
scout-mcp --completion bash > /etc/bash_completion.d/scout-mcp
scout-mcp --completion zsh > "${fpath[1]}/_scout-mcp"
scout-mcp --completion fish > ~/.config/fish/completions/scout-mcp.fishExamples
A tools/call for scout_check:
{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"scout_check","arguments":{"endpoint":"http://127.0.0.1:3000/mcp","phases":["handshake","catalog"]}}}arguments for the other two:
{"statement": "<the attestation's JSON text>", "endpoint": "https://mcp.example.com/mcp"}{}The first is scout_verify_attestation, with endpoint optional; the
second is scout_version, which takes no arguments. An unknown argument
is refused rather than ignored, so a misspelling is reported.
To see the handshake and the tool list without a host:
make smokeWhen not to use scout-mcp
For a server that is a program.
scout_checktakes a Streamable HTTP URL. An agent starting arbitrary programs is a different trust decision; runscout check --stdio -- <command>yourself.For a server that needs credentials. Every run is
--auth none, so the evaluation is what an unauthenticated client sees. Run scout in a terminal with the credentials you were given for the rest.As a CI gate. Use scout-action, which keeps the report and fails the job.
To check who signed an attestation.
scout_verify_attestationchecks structure and integrity; the signature is the envelope's, andcosignorgh attestation verifychecks it.For many evaluations at once. Requests are answered in turn; a host that wants two at once starts two servers.
Development
make # format, vet, lint, headers, tests, stdio smoke test
make test-race # race detector, randomised order
make image # the container image for this machine, without goreleaser
make family # this repository's row in scout's family manifest
make lockstep # the version is scout's latest releaseEvery gate CI runs has a local form; DEVELOPMENT.md maps
them. CI also builds scout at the lockstep version and has it evaluate this
server over stdio, failing below 90 or on any failing check but
supply.provenance.
Security
The endpoint an agent passes is checked against the allowlist before scout
runs, and a refused endpoint never reaches scout. scout runs with
--auth none and an empty configuration file, and with no flag that
allows a mutating tool; each of those is a test in internal/runner and
internal/server. What reaches the agent is bounded: at most 25 failures
per result, and scout's error output cut to its last 400 characters. CI
runs govulncheck on every push, and releases are signed with cosign
keyless and carry SLSA build provenance.
Report vulnerabilities according to SECURITY.md.
Documentation
The four entry points, identical across every repo in the family:
User Manual — scout's rendered manual: the phases, the checks, the report
API reference — this module's packages
Developer docs — toolchain, task map, reproducing every CI gate locally
Ecosystem map — the family, the published artefacts, the lockstep version rule
Document | Covers |
Publishing the registry listing | |
Decision records for this repository | |
The MCP Registry listing | |
Disclosure policy, supported versions, what is guaranteed | |
Signed-commit and DCO policy, what a change needs | |
Per-release notes, and the lockstep version rule | |
Where to ask, and what to expect |
Stability guarantees
scout-mcp is pre-1.0, carries scout's version, and follows SemVer with the patch digit moving for everything until 1.0.
The breaking axis is what an agent or a host relies on. These are breaking:
Removing or renaming a tool, an argument or a structured result field
Making an optional argument required
Widening the default allowlist, sending a credential, or passing scout a flag that allows a mutating tool
Changing a flag's or an environment variable's meaning
Added tools, optional arguments and result fields, and a new scout release underneath are not breaking. What a run reports is scout's, and scout's own stability rule governs it.
Deprecation window. A deprecated tool or argument keeps working for at least one release after the release that announces it.
License
Licensed under the GNU General Public License v3.0 only.
scout-mcp is GPL-3.0-only like scout, the program it runs. It uses the Apache-2.0 scout-reporting verifier for attestations.
This server cannot be deployed
Maintenance
Related MCP Connectors
Signed, offline-verifiable safety scores for the MCP servers, packages & tools an agent connects to
The MCP server that vets MCP servers: identity, risk grade and per-tool risk before you install.
Find, vet, and run MCP tools through a secure audited gateway with prompt-injection risk scoring
Search, vet & assemble MCP servers from your agent: verified tools, risk labels, and trust scores.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceA secure, local-first MCP server for read-only inspection and troubleshooting of development environments, exposing narrow, typed, auditable capabilities for repository inspection, log summarization, Docker review, and security scanning without granting unrestricted machine access.MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to safely explore and diagnose remote servers by providing a read-only sandbox with controlled access to files, logs, Docker, and databases. It exposes MCP tools that allow natural-language investigation and direct command execution without write permissions.3-
- AlicenseAqualityBmaintenanceEnables secure Windows development automation by providing MCP tools for filesystem access, project builds, restricted PowerShell commands, and approved network fetches.17MIT
- AlicenseNot gradedqualityBmaintenanceEnables security auditing of MCP servers by running them in a sandbox with fake secrets, capturing outbound traffic, and detecting tool poisoning or secret exfiltration before approval.19 npmMIT