Is Mondaycom MCP server safe?
- Node.js network egress
- MCP tool surface detected
monday-ai is an AI mcp_server analyzed by SkillTotal's deterministic static scanner. The scan found no malicious indicators, though 2 risky constructs are reported for review. It can: mcp tools detected and network egress — capabilities are what the code can do, not a verdict on intent. Risk score 0/100 (low).
monday-ai 1.0.0
Automated static-analysis result. It can contain false positives and false negatives, and is not a claim about the intent of Mondaycom MCP server's authors. Report a false positive.
Behavioral traits
How this component maps to the CSA agentic threat model. Descriptive — it never affects the risk score.
Findings (2)
The component makes outbound network requests.
import axios from 'axios';
const response = await axios.get<AppFeatureSchemaDefinition[]>(this.SCHEMA_ENDPOINT, {import axios, { AxiosRequestConfig } from 'axios';const response = await axios.request<T>(axiosConfig);
if (axios.isAxiosError(error)) {const response = await axios.post<{ data?: T; errors?: Array<{ message: string }> }>(if (axios.isAxiosError(error)) {fetch(`${DEFAULT_PUBLIC_BASE_URL}${path}`, { method, headers, body, signal });const response = await fetch(url, { signal: AbortSignal.timeout(DOWNLOAD_TIMEOUT_MS) });import axios from 'axios';
const response = await axios.head(formTokenOrUrl, { maxRedirects: 0, validateStatus: (s) => s < 400 });import axios from 'axios';
Why it matters: Usually legitimate, but confirm the destinations are expected and no sensitive data leaves.
Fix: Confirm the destination hosts are expected and that no sensitive data is sent off-host.
An MCP tool surface (manifest or tool definitions) was found.
"mcpServers": {"mcpServers": {"mcpServers": {const mcpTool = this.registerTool(
this.dynamicToolManager.registerTool(tool, mcpTool);
Why it matters: Just context — review which tools it offers and their permissions.
Fix: Review the declared MCP tools and their permissions.
Check your own component
Run the same evidence-backed scan on any MCP server, agent skill, or package.
Scan your own componentHow we determine this: deterministic static analysis (regex + AST), evidence-anchored, no code execution. Methodology →