Gobby MCP Server

gobby PyPI v0.4.6

Published by gobbyai — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
A Why this grade threat 100 − adoption risk = 93/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 18

high Sensitive-source and external-sink co-existMTC-FLOW-004

Tools that read sensitive data ([get_usage_report]) and tools that can send data out ([can_spawn_agent, evaluate_spawn, send_message]) are exposed together. An agent can move private data to the sink.

Evidence: sources [get_usage_report] → sinks [can_spawn_agent, evaluate_spawn, send_message]

Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.

Location: flow get_usage_report → can_spawn_agent

high Tool "can_spawn_agent" exposes command/code executionMTC-CAP-001

Tool "can_spawn_agent" appears to run shell commands or evaluate code (keyword "spawn" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool can_spawn_agent

high Tool "evaluate_spawn" exposes command/code executionMTC-CAP-001

Tool "evaluate_spawn" appears to run shell commands or evaluate code (keyword "spawn" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool evaluate_spawn

high Shell/command execution in server code (build_backend/__init__.py)MTC-SRC-002

In the server's implementation (`build_backend/__init__.py:108`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ) result = subprocess.run( # nosec B603 B607 command, cwd=_WEB_SRC, ch

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build_backend/__init__.py

high Shell/command execution in server code (src/gobby/adapters/codex_impl/client.py)MTC-SRC-002

In the server's implementation (`src/gobby/adapters/codex_impl/client.py:154`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: self._process = subprocess.Popen( # nosec B603 # hardcoded argument list command,

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/adapters/codex_impl/client.py

high Shell/command execution in server code (src/gobby/agents/checkpoint_manager.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/checkpoint_manager.py:140`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: y: result = subprocess.run( ["git", *args], cwd=cwd, capture

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/checkpoint_manager.py

high Shell/command execution in server code (src/gobby/agents/isolation.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/isolation.py:33`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: r) -> str: result = subprocess.run( # nosec B603 B607 # fixed git argv on local isolation path. ["git", "-C

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/isolation.py

high Shell/command execution in server code (src/gobby/agents/sandbox.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/sandbox.py:508`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: try: result = subprocess.run( [ "git", "-C", str(w

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/sandbox.py

high Shell/command execution in server code (src/gobby/agents/spawn_executor.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/spawn_executor.py:295`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: in terminal with direct spawn (no preflight). Session linkage approach: 1. Pre-create Gobby session with parent

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/spawn_executor.py

high Shell/command execution in server code (src/gobby/agents/spawners/base.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/spawners/base.py:85`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: @abstractmethod def spawn( self, command: list[str], cwd: str | Path, env: dict[str,

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/spawners/base.py

high Shell/command execution in server code (src/gobby/agents/tmux/session_manager.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/tmux/session_manager.py:152`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: result = subprocess.run( ["wsl", "--exec", "which", self._config.command],

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/tmux/session_manager.py

high Shell/command execution in server code (src/gobby/agents/tmux/spawner.py)MTC-SRC-002

In the server's implementation (`src/gobby/agents/tmux/spawner.py:85`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: is_available() def spawn( self, command: list[str], cwd: str | Path, env: dict[str,

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/agents/tmux/spawner.py

high Shell/command execution in server code (src/gobby/build/branch_cleanup.py)MTC-SRC-002

In the server's implementation (`src/gobby/build/branch_cleanup.py:134`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: rocess[str]: return subprocess.run( # nosec B603 # git args are fixed by callers. ["git", *args], c

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/build/branch_cleanup.py

medium Tool "unlink_identity" can modify the filesystemMTC-CAP-002

Tool "unlink_identity" can write, overwrite or delete files (keyword "unlink" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool unlink_identity

medium Dynamic module load from a non-literal (src/gobby/cli/installers/shared.py)MTC-SRC-005

In the server's implementation (`src/gobby/cli/installers/shared.py:256`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: y: module = __import__(module_path, fromlist=[func_name]) sync_fn = getattr(module, func_name)

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/gobby/cli/installers/shared.py

low Mutating tool "can_spawn_agent" declares no destructiveHintMTC-CAP-005

Tool "can_spawn_agent" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool can_spawn_agent

low Mutating tool "evaluate_spawn" declares no destructiveHintMTC-CAP-005

Tool "evaluate_spawn" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool evaluate_spawn

low Mutating tool "unlink_identity" declares no destructiveHintMTC-CAP-005

Tool "unlink_identity" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool unlink_identity

Tools 96

Each tool and what it can reach — statically extracted from the published source.

  • can_spawn_agentruns code / shell
  • evaluate_spawnruns code / shell
  • get_usage_reportreads sensitive data
  • send_messagenetwork egress
  • unlink_identitywrites files
  • add_channelno sensitive capability
  • add_mcp_serverno sensitive capability
  • audit_memoriesno sensitive capability
  • bootstrap_session_titleno sensitive capability
  • build_turn_and_digestno sensitive capability
Show 86 more tools ↓
  • call_toolno sensitive capability
  • canvas_presentno sensitive capability
  • capture_baseline_dirty_filesno sensitive capability
  • cleanup_memoriesno sensitive capability
  • close_canvasno sensitive capability
  • create_cron_jobno sensitive capability
  • create_memoryno sensitive capability
  • delete_cron_jobno sensitive capability
  • delete_memoryno sensitive capability
  • ensure_defaultsno sensitive capability
  • get_agent_resultno sensitive capability
  • get_cron_jobno sensitive capability
  • get_failing_toolsno sensitive capability
  • get_machine_idno sensitive capability
  • get_memoryno sensitive capability
  • get_messagesno sensitive capability
  • get_metrics_timeseriesno sensitive capability
  • get_related_memoriesno sensitive capability
  • get_retention_statsno sensitive capability
  • get_rule_metricsno sensitive capability
  • get_running_agentno sensitive capability
  • get_session_commitsno sensitive capability
  • get_session_toolsno sensitive capability
  • get_skillno sensitive capability
  • get_skill_metricsno sensitive capability
  • get_tool_metricsno sensitive capability
  • get_tool_schemano sensitive capability
  • get_tool_success_rateno sensitive capability
  • get_top_toolsno sensitive capability
  • get_transcript_statusno sensitive capability
  • get_variableno sensitive capability
  • hub_statsno sensitive capability
  • import_mcp_serverno sensitive capability
  • init_projectno sensitive capability
  • install_skillno sensitive capability
  • link_identityno sensitive capability
  • list_agent_runsno sensitive capability
  • list_channelsno sensitive capability
  • list_config_keysno sensitive capability
  • list_cron_jobsno sensitive capability
  • list_cron_runsno sensitive capability
  • list_cross_project_sessionsno sensitive capability
  • list_cross_project_tasksno sensitive capability
  • list_hubsno sensitive capability
  • list_identitiesno sensitive capability
  • list_mcp_serversno sensitive capability
  • list_memoriesno sensitive capability
  • list_toolsno sensitive capability
  • memory_statsno sensitive capability
  • merge_abortno sensitive capability
  • merge_applyno sensitive capability
  • merge_resolveno sensitive capability
  • merge_startno sensitive capability
  • merge_statusno sensitive capability
  • move_skill_to_installedno sensitive capability
  • move_skill_to_projectno sensitive capability
  • probe_branch_protectionno sensitive capability
  • rebuild_crossrefsno sensitive capability
  • rebuild_knowledge_graphno sensitive capability
  • recommend_toolsno sensitive capability
  • reindex_embeddingsno sensitive capability
  • remember_with_imageno sensitive capability
  • remove_channelno sensitive capability
  • remove_mcp_serverno sensitive capability
  • remove_skillno sensitive capability
  • render_surfaceno sensitive capability
  • reset_metricsno sensitive capability
  • reset_tool_metricsno sensitive capability
  • run_cron_jobno sensitive capability
  • running_agent_statsno sensitive capability
  • search_hubno sensitive capability
  • search_knowledge_graphno sensitive capability
  • search_memoriesno sensitive capability
  • search_messagesno sensitive capability
  • search_toolsno sensitive capability
  • session_statsno sensitive capability
  • set_configno sensitive capability
  • set_variableno sensitive capability
  • stop_agentno sensitive capability
  • sync_exportno sensitive capability
  • sync_importno sensitive capability
  • toggle_cron_jobno sensitive capability
  • update_cron_jobno sensitive capability
  • update_memoryno sensitive capability
  • update_surfaceno sensitive capability
  • wait_for_interactionno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v0.4.6 latest A 93/100 18 1.9.0 2026-07-23

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/gobby/badge.svg)](https://mcptrustchecker.com/registry/gobby)
HTML
<a href="https://mcptrustchecker.com/registry/gobby"><img src="https://mcptrustchecker.com/registry/gobby/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/gobby/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan gobby --online --registry pypi

Use the free API → How scoring works

More in Developer Tools