Local Mcp MCP Server

https://local-mcp.com/mcp Remote v3.0.0

Published by local-mcp.com — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.

180 local tools from ChatGPT, Claude.ai & desktop AIs: Mail, iMessage, Teams, files. Local, free.

Trust grade
B
85/100
Last scanned get badge →
Trust
B · 85/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
Live
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 91 − adoption risk = 85/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 − 9.5 = 91. What the published surface and source actually contain:

PointsWhat was foundCategory
−9.5 Annotation contradicts behavior on "gdrive_write_file" ×2 MTC-CAP-003 permissions

2. Client adoption risk — 91 − 6 = 85. 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

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

critical Completed toxic-flow trifecta across toolsMTC-FLOW-002

This server (without client built-ins) exposes a complete data-exfiltration chain: list_email_accounts → file_read ⇒ m365_send_email. Untrusted input is ingested, private data is read, and it can be sent to an external sink — and at least one leg is a direct schema wire (⇒), where a producer's output drops straight into a free-text parameter of the next tool, so the chain needs little agent cooperation. Static analysis proves the primitive exists, not that a specific run will occur.

Fix: Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.

Location: flow list_email_accounts → file_read → m365_send_email

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

Tool "gdrive_delete_file" can write, overwrite or delete files (keyword "delete_file" 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 gdrive_delete_file

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

Tool "gdrive_write_file" can write, overwrite or delete files (keyword "write_file" 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 gdrive_write_file

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

Tool "onedrive_delete_file" can write, overwrite or delete files (keyword "delete_file" 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 onedrive_delete_file

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

Tool "onedrive_move_file" can write, overwrite or delete files (keyword "move_file" 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 onedrive_move_file

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

Tool "onedrive_write_file" can write, overwrite or delete files (keyword "write_file" 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 onedrive_write_file

medium Annotation contradicts behavior on "gdrive_write_file"MTC-CAP-003

Tool "gdrive_write_file" advertises destructiveHint=false but its derived capabilities include state-modifying actions (file-write). Tool annotations are attacker-controllable and must never be trusted; a mismatch like this is exactly how a hostile server hides a destructive tool.

Fix: Ignore server-provided annotations for security decisions; gate destructive tools on explicit user consent.

Location: tool gdrive_write_file

medium Annotation contradicts behavior on "onedrive_write_file"MTC-CAP-003

Tool "onedrive_write_file" advertises destructiveHint=false but its derived capabilities include state-modifying actions (file-write). Tool annotations are attacker-controllable and must never be trusted; a mismatch like this is exactly how a hostile server hides a destructive tool.

Fix: Ignore server-provided annotations for security decisions; gate destructive tools on explicit user consent.

Location: tool onedrive_write_file

low Unconstrained path parameter "path" on "file_read"MTC-CAP-008

Tool "file_read" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool file_read · inputSchema.properties.path

low Unconstrained path parameter "path" on "finder_list"MTC-CAP-008

Tool "finder_list" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool finder_list · inputSchema.properties.path

low Unconstrained path parameter "path" on "gdrive_delete_file"MTC-CAP-008

Tool "gdrive_delete_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool gdrive_delete_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "gdrive_list_files"MTC-CAP-008

Tool "gdrive_list_files" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool gdrive_list_files · inputSchema.properties.path

low Unconstrained path parameter "path" on "gdrive_read_file"MTC-CAP-008

Tool "gdrive_read_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool gdrive_read_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "gdrive_write_file"MTC-CAP-008

Tool "gdrive_write_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool gdrive_write_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "onedrive_delete_file"MTC-CAP-008

Tool "onedrive_delete_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool onedrive_delete_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "onedrive_list_files"MTC-CAP-008

Tool "onedrive_list_files" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool onedrive_list_files · inputSchema.properties.path

low Unconstrained path parameter "path" on "onedrive_read_file"MTC-CAP-008

Tool "onedrive_read_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool onedrive_read_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "onedrive_write_file"MTC-CAP-008

Tool "onedrive_write_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool onedrive_write_file · inputSchema.properties.path

Tools 203

Each tool and what it can reach — enumerated from the running server.

  • file_readreads sensitive data
  • finder_listreads sensitive data
  • gdrive_delete_filewrites files
  • gdrive_list_filesreads sensitive data
  • gdrive_read_filereads sensitive data
  • gdrive_write_filewrites files
  • list_email_accountsingests untrusted input
  • list_emailsingests untrusted input
  • list_message_chatsingests untrusted input
  • lmcp_install_upgradeingests untrusted input
Show 193 more tools ↓
  • m365_read_emailingests untrusted input
  • m365_send_emailnetwork egress
  • onedrive_delete_filewrites files
  • onedrive_list_filesreads sensitive data
  • onedrive_move_filewrites files
  • onedrive_read_filereads sensitive data
  • onedrive_rootreads sensitive data
  • onedrive_write_filewrites files
  • read_emailingests untrusted input
  • read_messagesingests untrusted input
  • recipe_discoveringests untrusted input
  • send_emailnetwork egress
  • send_messagenetwork egress
  • signal_connectingests untrusted input
  • signal_list_chatsingests untrusted input
  • signal_read_messagesingests untrusted input
  • teams_list_channelsingests untrusted input
  • teams_send_messagenetwork egress
  • complete_omnifocus_taskno sensitive capability
  • complete_reminderno sensitive capability
  • configure_clientsno sensitive capability
  • connect_m365_accountno sensitive capability
  • connect_todoistno sensitive capability
  • create_calendar_eventno sensitive capability
  • create_draftno sensitive capability
  • create_email_folderno sensitive capability
  • create_noteno sensitive capability
  • create_omnifocus_taskno sensitive capability
  • create_referral_invitesno sensitive capability
  • create_reminderno sensitive capability
  • create_reminder_listno sensitive capability
  • daily_briefno sensitive capability
  • delete_calendar_eventno sensitive capability
  • delete_noteno sensitive capability
  • delete_reminderno sensitive capability
  • delete_reminder_folderno sensitive capability
  • disconnect_m365_accountno sensitive capability
  • disconnect_todoistno sensitive capability
  • excel_createno sensitive capability
  • excel_readno sensitive capability
  • excel_write_cellno sensitive capability
  • file_listno sensitive capability
  • file_searchno sensitive capability
  • file_writeno sensitive capability
  • finder_searchno sensitive capability
  • gdrive_file_infono sensitive capability
  • gdrive_rootno sensitive capability
  • gdrive_search_filesno sensitive capability
  • get_audit_logno sensitive capability
  • get_configno sensitive capability
  • get_contactno sensitive capability
  • get_datetimeno sensitive capability
  • get_m365_personno sensitive capability
  • get_reminder_foldersno sensitive capability
  • get_weatherno sensitive capability
  • list_accountsno sensitive capability
  • list_calendar_eventsno sensitive capability
  • list_calendar_namesno sensitive capability
  • list_contactsno sensitive capability
  • list_displaysno sensitive capability
  • list_email_foldersno sensitive capability
  • list_m365_people_insightsno sensitive capability
  • list_missing_permissionsno sensitive capability
  • list_notesno sensitive capability
  • list_omnifocus_foldersno sensitive capability
  • list_omnifocus_projectsno sensitive capability
  • list_omnifocus_tagsno sensitive capability
  • list_omnifocus_tasksno sensitive capability
  • list_referral_candidatesno sensitive capability
  • list_remindersno sensitive capability
  • list_windowsno sensitive capability
  • lmcp_stateno sensitive capability
  • lmcp_upgrade_diagnosticsno sensitive capability
  • m365_create_eventno sensitive capability
  • m365_delete_eventno sensitive capability
  • m365_get_contactno sensitive capability
  • m365_list_contactsno sensitive capability
  • m365_list_emailsno sensitive capability
  • m365_list_eventsno sensitive capability
  • m365_reply_emailno sensitive capability
  • m365_search_contactsno sensitive capability
  • m365_search_emailsno sensitive capability
  • media_probeno sensitive capability
  • move_emailno sensitive capability
  • nordvpn_diagnoseno sensitive capability
  • nordvpn_serversno sensitive capability
  • nordvpn_statusno sensitive capability
  • notion_list_databasesno sensitive capability
  • notion_list_pagesno sensitive capability
  • notion_list_workspacesno sensitive capability
  • notion_open_pageno sensitive capability
  • notion_read_databaseno sensitive capability
  • notion_read_pageno sensitive capability
  • notion_searchno sensitive capability
  • onedrive_file_infono sensitive capability
  • onedrive_search_filesno sensitive capability
  • onedrive_set_scopeno sensitive capability
  • outlook_diagnoseno sensitive capability
  • pdf_readno sensitive capability
  • permissions_statusno sensitive capability
  • ppt_createno sensitive capability
  • ppt_readno sensitive capability
  • read_noteno sensitive capability
  • recipe_deleteno sensitive capability
  • recipe_exportno sensitive capability
  • recipe_getno sensitive capability
  • recipe_importno sensitive capability
  • recipe_installno sensitive capability
  • recipe_listno sensitive capability
  • recipe_runno sensitive capability
  • recipe_runsno sensitive capability
  • recipe_saveno sensitive capability
  • record_markerno sensitive capability
  • rename_reminder_folderno sensitive capability
  • reply_emailno sensitive capability
  • report_frictionno sensitive capability
  • report_problemno sensitive capability
  • request_featureno sensitive capability
  • run_diagnosticsno sensitive capability
  • save_attachmentno sensitive capability
  • screen_record_startno sensitive capability
  • screen_record_statusno sensitive capability
  • screen_record_stopno sensitive capability
  • screenshot_captureno sensitive capability
  • search_contactsno sensitive capability
  • search_emailsno sensitive capability
  • search_m365_directoryno sensitive capability
  • search_messagesno sensitive capability
  • search_notesno sensitive capability
  • search_omnifocus_tasksno sensitive capability
  • setup_installno sensitive capability
  • signal_compose_guidanceno sensitive capability
  • signal_search_messagesno sensitive capability
  • slack_list_channelsno sensitive capability
  • slack_list_workspacesno sensitive capability
  • slack_read_channel_messagesno sensitive capability
  • slack_search_messagesno sensitive capability
  • stocks_get_chartno sensitive capability
  • stocks_get_quoteno sensitive capability
  • stocks_search_symbolno sensitive capability
  • survey_respondno sensitive capability
  • survey_skipno sensitive capability
  • teams_call_historyno sensitive capability
  • teams_list_chatsno sensitive capability
  • teams_list_teamsno sensitive capability
  • teams_read_channel_messagesno sensitive capability
  • teams_read_chat_messagesno sensitive capability
  • teams_search_messagesno sensitive capability
  • teams_send_channel_messageno sensitive capability
  • todo_complete_taskno sensitive capability
  • todo_create_taskno sensitive capability
  • todo_get_foldersno sensitive capability
  • todo_list_tasksno sensitive capability
  • todoist_complete_taskno sensitive capability
  • todoist_create_taskno sensitive capability
  • todoist_list_projectsno sensitive capability
  • todoist_list_tasksno sensitive capability
  • ui_clickno sensitive capability
  • ui_find_elementno sensitive capability
  • ui_get_elementno sensitive capability
  • ui_keystrokeno sensitive capability
  • ui_menu_bar_clickno sensitive capability
  • ui_read_treeno sensitive capability
  • ui_typeno sensitive capability
  • ui_wait_for_elementno sensitive capability
  • update_calendar_eventno sensitive capability
  • update_noteno sensitive capability
  • update_reminderno sensitive capability
  • video_blur_regionno sensitive capability
  • video_concatno sensitive capability
  • video_export_gifno sensitive capability
  • video_reframeno sensitive capability
  • video_trimno sensitive capability
  • web_clickno sensitive capability
  • web_extractno sensitive capability
  • web_findno sensitive capability
  • web_loginno sensitive capability
  • web_navigateno sensitive capability
  • web_readno sensitive capability
  • web_screenshotno sensitive capability
  • web_session_closeno sensitive capability
  • web_session_deleteno sensitive capability
  • web_session_listno sensitive capability
  • web_showno sensitive capability
  • web_typeno sensitive capability
  • web_wait_forno sensitive capability
  • window_focusno sensitive capability
  • window_set_frameno sensitive capability
  • word_appendno sensitive capability
  • word_createno sensitive capability
  • word_readno sensitive capability
  • zoom_list_recordingsno sensitive capability
  • zoom_read_transcriptno sensitive capability

Toxic flows 1

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

Versions 10

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
v3.0.0 latest B 85/100 18 1.13.0 2026-09-08
vb4644a2f-126 B 85/100 18 1.13.0 2026-09-06
v67ae5f51-021 B 85/100 18 1.13.0 2026-09-05
vddff0be5-e0d B 85/100 18 1.13.0 2026-09-04
v4058a00b-01d B 85/100 18 1.13.0 2026-09-01
Show 5 more versions ↓
v3fb5bc7b-43d B 85/100 18 1.13.0 2026-08-31
vc4545f64-436 B 85/100 18 1.13.0 2026-08-30
vd6d7ef3b-524 B 85/100 18 1.13.0 2026-08-29
v50f3a32f-5b5 B 85/100 18 1.13.0 2026-08-28
v70e700d3-c67 B 85/100 18 1.13.0 2026-08-27

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

Use the free API → How scoring works

More in Communication & Collaboration