Agent Fleet MCP Server

agent-fleet npm v1.0.1

Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.

A comprehensive platform for creating, managing, and deploying standalone AI agents with tool support and MCP server integration.

Trust grade
A
92/100
Last scanned get badge →
Trust
A · 92/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.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 100 − adoption risk = 92/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 − 8 = 92. 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
−2 publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read

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 19

high Dynamic evaluation of a non-literal value (example-mcp-servers/example-python/fastmcp_server.py)MTC-SRC-010

In the server's implementation (`example-mcp-servers/example-python/fastmcp_server.py:72`): Evaluating a runtime value as code (rather than a fixed literal) executes whatever reaches it — a direct RCE primitive, and almost never necessary in legitimate code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: umexpr result = eval(request.expression, {"__builtins__": {}}, {}) if isinstance(result, (int,

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 example-mcp-servers/example-python/fastmcp_server.py

high Dynamic evaluation of a non-literal value (example-mcp-servers/example-python/server.py)MTC-SRC-010

In the server's implementation (`example-mcp-servers/example-python/server.py:40`): Evaluating a runtime value as code (rather than a fixed literal) executes whatever reaches it — a direct RCE primitive, and almost never necessary in legitimate code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: n only result = eval(expression, {"__builtins__": {}}, {}) return json.dumps({ "success": Tr

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 example-mcp-servers/example-python/server.py

high Dynamic code execution in server code (dist/cli.js)MTC-SRC-001

In the server's implementation (`dist/cli.js:6677`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { const result = Function(`"use strict"; return (${expression})`)(); return { success: true, result };

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 dist/cli.js

high Dynamic code execution in server code (dist/index.js)MTC-SRC-001

In the server's implementation (`dist/index.js:2444`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { const result = Function(`"use strict"; return (${expression})`)(); return { success: true, result };

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 dist/index.js

high Dynamic code execution in server code (example-mcp-servers/example-python/fastmcp_server.py)MTC-SRC-001

In the server's implementation (`example-mcp-servers/example-python/fastmcp_server.py:72`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: umexpr result = eval(request.expression, {"__builtins__": {}}, {}) if isinstance(result, (int,

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 example-mcp-servers/example-python/fastmcp_server.py

high Dynamic code execution in server code (example-mcp-servers/example-python/server.py)MTC-SRC-001

In the server's implementation (`example-mcp-servers/example-python/server.py:40`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: n only result = eval(expression, {"__builtins__": {}}, {}) return json.dumps({ "success": Tr

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 example-mcp-servers/example-python/server.py

high Dynamic code execution in server code (memory/tool-templates/data-transformer/data-transformer-tool.ts)MTC-SRC-001

In the server's implementation (`memory/tool-templates/data-transformer/data-transformer-tool.ts:396`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. 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 { const fn = new Function('data', customFunction); return fn(data); } catch (error: any) { throw ne

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 memory/tool-templates/data-transformer/data-transformer-tool.ts

high Dynamic code execution in server code (packages/runtime/src/built-in-tools.ts)MTC-SRC-001

In the server's implementation (`packages/runtime/src/built-in-tools.ts:147`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { const result = Function(`"use strict"; return (${expression})`)(); return { success: true, result };

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 packages/runtime/src/built-in-tools.ts

high Dynamic code execution in server code (src/tools/built-in/index.ts)MTC-SRC-001

In the server's implementation (`src/tools/built-in/index.ts:144`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { const result = Function(`"use strict"; return (${expression})`)(); return { success: true, result };

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/tools/built-in/index.ts

high Shell/command execution in server code (dist/cli.js)MTC-SRC-002

In the server's implementation (`dist/cli.js:2020`): 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: { exec as exec2 } from "child_process"; import { promisify as promisify2 } from "util"; import { readFile as readFile5,

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 dist/cli.js

high Shell/command execution in server code (dist/index.js)MTC-SRC-002

In the server's implementation (`dist/index.js:2316`): 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: ; import { exec } from "child_process"; import { promisify } from "util"; import { readFile as readFile3, writeFile as 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 dist/index.js

high Shell/command execution in server code (packages/runtime/src/built-in-tools.ts)MTC-SRC-002

In the server's implementation (`packages/runtime/src/built-in-tools.ts:3`): 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: ; import { exec } from 'child_process'; import { promisify } from 'util'; import { readFile, writeFile, readdir } from '

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 packages/runtime/src/built-in-tools.ts

high Shell/command execution in server code (src/agents/agent-repository-manager.ts)MTC-SRC-002

In the server's implementation (`src/agents/agent-repository-manager.ts:1`): 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: import { exec } from 'child_process'; import { promisify } from 'util'; import { writeFile, access, mkdir, cp } from '

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/agents/agent-repository-manager.ts

high Shell/command execution in server code (src/git/git-manager.ts)MTC-SRC-002

In the server's implementation (`src/git/git-manager.ts:1`): 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: import { exec } from 'child_process'; import { promisify } from 'util'; import { readFile, access, readdir, stat } fro

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/git/git-manager.ts

high Shell/command execution in server code (src/mcp/mcp-bundler.ts)MTC-SRC-002

In the server's implementation (`src/mcp/mcp-bundler.ts:3`): 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: ; import { exec } from 'child_process'; import { promisify } from 'util'; import type { MCPServerConfig } from '../types

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/mcp/mcp-bundler.ts

high Shell/command execution in server code (src/tools/built-in/index.ts)MTC-SRC-002

In the server's implementation (`src/tools/built-in/index.ts:3`): 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: ; import { exec } from 'child_process'; import { promisify } from 'util'; import { readFile, writeFile, readdir } from '

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/tools/built-in/index.ts

high Shell/command execution in server code (src/web/server.ts)MTC-SRC-002

In the server's implementation (`src/web/server.ts:13`): 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: port { execSync } from 'child_process'; import type { AgentManifest } from '../types/index.js'; import dotenv from 'dote

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/web/server.ts

medium Untrusted input can drive an external actionMTC-FLOW-005

Untrusted-input tools ([fetch_data, coda_get_page]) co-exist with external-action tools ([coda_create_webhook, coda_delete_webhook, coda_trigger_automation, linear_create_issue, slack_send_message, slack_upload_file]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [fetch_data, coda_get_page] → sinks [coda_create_webhook, coda_delete_webhook, coda_trigger_automation, linear_create_issue, slack_send_message, slack

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow fetch_data → coda_create_webhook

medium Hardcoded egress to an external endpoint (src/web/server.ts)MTC-SRC-003

In the server's implementation (`src/web/server.ts:136`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch('https://oauth2.googleapis.com/token', { method: 'POST', headers: { '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/web/server.ts

Tools 85

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

  • coda_create_webhooknetwork egress
  • coda_delete_webhooknetwork egress
  • coda_get_pageingests untrusted input
  • coda_trigger_automationnetwork egress
  • fetch_dataingests untrusted input
  • linear_create_issuenetwork egress
  • slack_send_messagenetwork egress
  • slack_upload_filenetwork egress
  • calculateno sensitive capability
  • calculate_metricsno sensitive capability
Show 75 more tools ↓
  • calendar_create_eventno sensitive capability
  • calendar_create_meetingno sensitive capability
  • calendar_delete_eventno sensitive capability
  • calendar_list_calendarsno sensitive capability
  • calendar_list_eventsno sensitive capability
  • calendar_update_eventno sensitive capability
  • coda_create_docno sensitive capability
  • coda_create_pageno sensitive capability
  • coda_delete_docno sensitive capability
  • coda_delete_pageno sensitive capability
  • coda_delete_rowsno sensitive capability
  • coda_get_columnno sensitive capability
  • coda_get_controlno sensitive capability
  • coda_get_docno sensitive capability
  • coda_get_formulano sensitive capability
  • coda_get_rowno sensitive capability
  • coda_get_tableno sensitive capability
  • coda_get_table_columnsno sensitive capability
  • coda_insert_rowsno sensitive capability
  • coda_list_controlsno sensitive capability
  • coda_list_docsno sensitive capability
  • coda_list_formulasno sensitive capability
  • coda_list_pagesno sensitive capability
  • coda_list_rowsno sensitive capability
  • coda_list_tablesno sensitive capability
  • coda_list_webhooksno sensitive capability
  • coda_push_buttonno sensitive capability
  • coda_update_docno sensitive capability
  • coda_update_pageno sensitive capability
  • coda_update_rowno sensitive capability
  • gmail_create_draftno sensitive capability
  • gmail_get_attachmentsno sensitive capability
  • gmail_searchno sensitive capability
  • gmail_sendno sensitive capability
  • google_authenticateno sensitive capability
  • health_checkno sensitive capability
  • linear_add_commentno sensitive capability
  • linear_add_issue_to_cycleno sensitive capability
  • linear_add_issue_to_projectno sensitive capability
  • linear_add_labelno sensitive capability
  • linear_create_projectno sensitive capability
  • linear_delete_commentno sensitive capability
  • linear_delete_issueno sensitive capability
  • linear_get_current_cycleno sensitive capability
  • linear_get_current_userno sensitive capability
  • linear_get_issueno sensitive capability
  • linear_get_projectno sensitive capability
  • linear_get_teamno sensitive capability
  • linear_get_userno sensitive capability
  • linear_list_commentsno sensitive capability
  • linear_list_cyclesno sensitive capability
  • linear_list_issuesno sensitive capability
  • linear_list_labelsno sensitive capability
  • linear_list_projectsno sensitive capability
  • linear_list_team_issuesno sensitive capability
  • linear_list_teamsno sensitive capability
  • linear_list_usersno sensitive capability
  • linear_list_workflow_statesno sensitive capability
  • linear_move_issueno sensitive capability
  • linear_search_issuesno sensitive capability
  • linear_update_commentno sensitive capability
  • linear_update_issueno sensitive capability
  • linear_update_projectno sensitive capability
  • list_itemsno sensitive capability
  • meet_get_recordingno sensitive capability
  • meet_get_transcriptno sensitive capability
  • meet_list_conference_recordsno sensitive capability
  • meet_list_recordingsno sensitive capability
  • meet_list_transcript_entriesno sensitive capability
  • meet_list_transcriptsno sensitive capability
  • process_fileno sensitive capability
  • slack_authenticateno sensitive capability
  • slack_get_channelsno sensitive capability
  • slack_get_messagesno sensitive capability
  • slack_get_usersno 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
v1.0.1 latest A 92/100 19 1.13.0 2026-09-07

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 · 92/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/agent-fleet/badge.svg)](https://mcptrustchecker.com/registry/agent-fleet)
HTML
<a href="https://mcptrustchecker.com/registry/agent-fleet"><img src="https://mcptrustchecker.com/registry/agent-fleet/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/agent-fleet/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 agent-fleet --online

Use the free API → How scoring works

More in Developer Tools