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.
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:
| Points | What was found | Category |
|---|---|---|
| −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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — enumerated from the running server.
file_readreads sensitive datafinder_listreads sensitive datagdrive_delete_filewrites filesgdrive_list_filesreads sensitive datagdrive_read_filereads sensitive datagdrive_write_filewrites fileslist_email_accountsingests untrusted inputlist_emailsingests untrusted inputlist_message_chatsingests untrusted inputlmcp_install_upgradeingests untrusted inputm365_read_emailingests untrusted inputm365_send_emailnetwork egressonedrive_delete_filewrites filesonedrive_list_filesreads sensitive dataonedrive_move_filewrites filesonedrive_read_filereads sensitive dataonedrive_rootreads sensitive dataonedrive_write_filewrites filesread_emailingests untrusted inputread_messagesingests untrusted inputrecipe_discoveringests untrusted inputsend_emailnetwork egresssend_messagenetwork egresssignal_connectingests untrusted inputsignal_list_chatsingests untrusted inputsignal_read_messagesingests untrusted inputteams_list_channelsingests untrusted inputteams_send_messagenetwork egresscomplete_omnifocus_taskno sensitive capabilitycomplete_reminderno sensitive capabilityconfigure_clientsno sensitive capabilityconnect_m365_accountno sensitive capabilityconnect_todoistno sensitive capabilitycreate_calendar_eventno sensitive capabilitycreate_draftno sensitive capabilitycreate_email_folderno sensitive capabilitycreate_noteno sensitive capabilitycreate_omnifocus_taskno sensitive capabilitycreate_referral_invitesno sensitive capabilitycreate_reminderno sensitive capabilitycreate_reminder_listno sensitive capabilitydaily_briefno sensitive capabilitydelete_calendar_eventno sensitive capabilitydelete_noteno sensitive capabilitydelete_reminderno sensitive capabilitydelete_reminder_folderno sensitive capabilitydisconnect_m365_accountno sensitive capabilitydisconnect_todoistno sensitive capabilityexcel_createno sensitive capabilityexcel_readno sensitive capabilityexcel_write_cellno sensitive capabilityfile_listno sensitive capabilityfile_searchno sensitive capabilityfile_writeno sensitive capabilityfinder_searchno sensitive capabilitygdrive_file_infono sensitive capabilitygdrive_rootno sensitive capabilitygdrive_search_filesno sensitive capabilityget_audit_logno sensitive capabilityget_configno sensitive capabilityget_contactno sensitive capabilityget_datetimeno sensitive capabilityget_m365_personno sensitive capabilityget_reminder_foldersno sensitive capabilityget_weatherno sensitive capabilitylist_accountsno sensitive capabilitylist_calendar_eventsno sensitive capabilitylist_calendar_namesno sensitive capabilitylist_contactsno sensitive capabilitylist_displaysno sensitive capabilitylist_email_foldersno sensitive capabilitylist_m365_people_insightsno sensitive capabilitylist_missing_permissionsno sensitive capabilitylist_notesno sensitive capabilitylist_omnifocus_foldersno sensitive capabilitylist_omnifocus_projectsno sensitive capabilitylist_omnifocus_tagsno sensitive capabilitylist_omnifocus_tasksno sensitive capabilitylist_referral_candidatesno sensitive capabilitylist_remindersno sensitive capabilitylist_windowsno sensitive capabilitylmcp_stateno sensitive capabilitylmcp_upgrade_diagnosticsno sensitive capabilitym365_create_eventno sensitive capabilitym365_delete_eventno sensitive capabilitym365_get_contactno sensitive capabilitym365_list_contactsno sensitive capabilitym365_list_emailsno sensitive capabilitym365_list_eventsno sensitive capabilitym365_reply_emailno sensitive capabilitym365_search_contactsno sensitive capabilitym365_search_emailsno sensitive capabilitymedia_probeno sensitive capabilitymove_emailno sensitive capabilitynordvpn_diagnoseno sensitive capabilitynordvpn_serversno sensitive capabilitynordvpn_statusno sensitive capabilitynotion_list_databasesno sensitive capabilitynotion_list_pagesno sensitive capabilitynotion_list_workspacesno sensitive capabilitynotion_open_pageno sensitive capabilitynotion_read_databaseno sensitive capabilitynotion_read_pageno sensitive capabilitynotion_searchno sensitive capabilityonedrive_file_infono sensitive capabilityonedrive_search_filesno sensitive capabilityonedrive_set_scopeno sensitive capabilityoutlook_diagnoseno sensitive capabilitypdf_readno sensitive capabilitypermissions_statusno sensitive capabilityppt_createno sensitive capabilityppt_readno sensitive capabilityread_noteno sensitive capabilityrecipe_deleteno sensitive capabilityrecipe_exportno sensitive capabilityrecipe_getno sensitive capabilityrecipe_importno sensitive capabilityrecipe_installno sensitive capabilityrecipe_listno sensitive capabilityrecipe_runno sensitive capabilityrecipe_runsno sensitive capabilityrecipe_saveno sensitive capabilityrecord_markerno sensitive capabilityrename_reminder_folderno sensitive capabilityreply_emailno sensitive capabilityreport_frictionno sensitive capabilityreport_problemno sensitive capabilityrequest_featureno sensitive capabilityrun_diagnosticsno sensitive capabilitysave_attachmentno sensitive capabilityscreen_record_startno sensitive capabilityscreen_record_statusno sensitive capabilityscreen_record_stopno sensitive capabilityscreenshot_captureno sensitive capabilitysearch_contactsno sensitive capabilitysearch_emailsno sensitive capabilitysearch_m365_directoryno sensitive capabilitysearch_messagesno sensitive capabilitysearch_notesno sensitive capabilitysearch_omnifocus_tasksno sensitive capabilitysetup_installno sensitive capabilitysignal_compose_guidanceno sensitive capabilitysignal_search_messagesno sensitive capabilityslack_list_channelsno sensitive capabilityslack_list_workspacesno sensitive capabilityslack_read_channel_messagesno sensitive capabilityslack_search_messagesno sensitive capabilitystocks_get_chartno sensitive capabilitystocks_get_quoteno sensitive capabilitystocks_search_symbolno sensitive capabilitysurvey_respondno sensitive capabilitysurvey_skipno sensitive capabilityteams_call_historyno sensitive capabilityteams_list_chatsno sensitive capabilityteams_list_teamsno sensitive capabilityteams_read_channel_messagesno sensitive capabilityteams_read_chat_messagesno sensitive capabilityteams_search_messagesno sensitive capabilityteams_send_channel_messageno sensitive capabilitytodo_complete_taskno sensitive capabilitytodo_create_taskno sensitive capabilitytodo_get_foldersno sensitive capabilitytodo_list_tasksno sensitive capabilitytodoist_complete_taskno sensitive capabilitytodoist_create_taskno sensitive capabilitytodoist_list_projectsno sensitive capabilitytodoist_list_tasksno sensitive capabilityui_clickno sensitive capabilityui_find_elementno sensitive capabilityui_get_elementno sensitive capabilityui_keystrokeno sensitive capabilityui_menu_bar_clickno sensitive capabilityui_read_treeno sensitive capabilityui_typeno sensitive capabilityui_wait_for_elementno sensitive capabilityupdate_calendar_eventno sensitive capabilityupdate_noteno sensitive capabilityupdate_reminderno sensitive capabilityvideo_blur_regionno sensitive capabilityvideo_concatno sensitive capabilityvideo_export_gifno sensitive capabilityvideo_reframeno sensitive capabilityvideo_trimno sensitive capabilityweb_clickno sensitive capabilityweb_extractno sensitive capabilityweb_findno sensitive capabilityweb_loginno sensitive capabilityweb_navigateno sensitive capabilityweb_readno sensitive capabilityweb_screenshotno sensitive capabilityweb_session_closeno sensitive capabilityweb_session_deleteno sensitive capabilityweb_session_listno sensitive capabilityweb_showno sensitive capabilityweb_typeno sensitive capabilityweb_wait_forno sensitive capabilitywindow_focusno sensitive capabilitywindow_set_frameno sensitive capabilityword_appendno sensitive capabilityword_createno sensitive capabilityword_readno sensitive capabilityzoom_list_recordingsno sensitive capabilityzoom_read_transcriptno 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 |
|---|---|---|---|---|
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 |
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 |
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 https://local-mcp.com/mcp --online
One key, 100+ models — chat with any LLM and generate video, images, speech. Free trial at 370.ai.
Retired compatibility stub for the AgentCanary MCP server. Daily briefs continue on X and Telegram.
A Backstage plugin that provides a chat interface for interacting with the MCP Servers.
Signal-first Bitcoin intelligence: sovereign, hiring & hashrate signals over MCP.
WhatsApp® reminders and rescheduling for Calendly. Public read-only MCP endpoint.
Open Source Generic MCP Client for testing & evaluating mcp servers and agents