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.
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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — statically extracted from the published source.
coda_create_webhooknetwork egresscoda_delete_webhooknetwork egresscoda_get_pageingests untrusted inputcoda_trigger_automationnetwork egressfetch_dataingests untrusted inputlinear_create_issuenetwork egressslack_send_messagenetwork egressslack_upload_filenetwork egresscalculateno sensitive capabilitycalculate_metricsno sensitive capabilitycalendar_create_eventno sensitive capabilitycalendar_create_meetingno sensitive capabilitycalendar_delete_eventno sensitive capabilitycalendar_list_calendarsno sensitive capabilitycalendar_list_eventsno sensitive capabilitycalendar_update_eventno sensitive capabilitycoda_create_docno sensitive capabilitycoda_create_pageno sensitive capabilitycoda_delete_docno sensitive capabilitycoda_delete_pageno sensitive capabilitycoda_delete_rowsno sensitive capabilitycoda_get_columnno sensitive capabilitycoda_get_controlno sensitive capabilitycoda_get_docno sensitive capabilitycoda_get_formulano sensitive capabilitycoda_get_rowno sensitive capabilitycoda_get_tableno sensitive capabilitycoda_get_table_columnsno sensitive capabilitycoda_insert_rowsno sensitive capabilitycoda_list_controlsno sensitive capabilitycoda_list_docsno sensitive capabilitycoda_list_formulasno sensitive capabilitycoda_list_pagesno sensitive capabilitycoda_list_rowsno sensitive capabilitycoda_list_tablesno sensitive capabilitycoda_list_webhooksno sensitive capabilitycoda_push_buttonno sensitive capabilitycoda_update_docno sensitive capabilitycoda_update_pageno sensitive capabilitycoda_update_rowno sensitive capabilitygmail_create_draftno sensitive capabilitygmail_get_attachmentsno sensitive capabilitygmail_searchno sensitive capabilitygmail_sendno sensitive capabilitygoogle_authenticateno sensitive capabilityhealth_checkno sensitive capabilitylinear_add_commentno sensitive capabilitylinear_add_issue_to_cycleno sensitive capabilitylinear_add_issue_to_projectno sensitive capabilitylinear_add_labelno sensitive capabilitylinear_create_projectno sensitive capabilitylinear_delete_commentno sensitive capabilitylinear_delete_issueno sensitive capabilitylinear_get_current_cycleno sensitive capabilitylinear_get_current_userno sensitive capabilitylinear_get_issueno sensitive capabilitylinear_get_projectno sensitive capabilitylinear_get_teamno sensitive capabilitylinear_get_userno sensitive capabilitylinear_list_commentsno sensitive capabilitylinear_list_cyclesno sensitive capabilitylinear_list_issuesno sensitive capabilitylinear_list_labelsno sensitive capabilitylinear_list_projectsno sensitive capabilitylinear_list_team_issuesno sensitive capabilitylinear_list_teamsno sensitive capabilitylinear_list_usersno sensitive capabilitylinear_list_workflow_statesno sensitive capabilitylinear_move_issueno sensitive capabilitylinear_search_issuesno sensitive capabilitylinear_update_commentno sensitive capabilitylinear_update_issueno sensitive capabilitylinear_update_projectno sensitive capabilitylist_itemsno sensitive capabilitymeet_get_recordingno sensitive capabilitymeet_get_transcriptno sensitive capabilitymeet_list_conference_recordsno sensitive capabilitymeet_list_recordingsno sensitive capabilitymeet_list_transcript_entriesno sensitive capabilitymeet_list_transcriptsno sensitive capabilityprocess_fileno sensitive capabilityslack_authenticateno sensitive capabilityslack_get_channelsno sensitive capabilityslack_get_messagesno sensitive capabilityslack_get_usersno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
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.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v1.0.1 latest |
A 92/100 | 19 | 1.13.0 | 2026-09-07 |
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.
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
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.