Warning. Serious findings were identified. Review the full report before connecting. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

Glassing-Wind

Source: github_code

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

M8ven verifies MCPs across every public registry — install directly from whichever one you prefer.

// key findings
🚨
Reads files from sensitive locations
Touches: ~/.gemini/antigravity/.env
⚠️
Tool descriptions don’t match what handlers do
4 tools describe read intent but their handlers mutate — git_summary (line 76: r = subprocess.run(); grep_codebase (line 141: r = subprocess.run(); get_test_coverage_for (line 223: r = subprocess.run()
🔐
You'll be asked for 1 credential: LM_PROXY_NEO4J_PASSWORD
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configMCP_ID
configLM_PROXY_WORKSPACE
configVSCODE_IPC_HOOK
configVSCODE_PID
configLM_PROXY_NEO4J_TX_TIMEOUT
configLM_PROXY_NEO4J_OP_PREFIX
configLM_PROXY_STRICT_JOB_SESSION
configLM_PROXY_NEO4J_URI
configLM_PROXY_NEO4J_USER
🔐 secretLM_PROXY_NEO4J_PASSWORD
configLM_PROXY_TS_PACK_CACHE_DIR
configLM_PROXY_TS_PACK_AUTO_DOWNLOAD
configLM_PROXY_NEO4J_READ_TIMEOUT
configLM_PROXY_GRAPH_WRITE_CONCURRENCY
configLM_PROXY_NEO4J_WRITE_TIMEOUT
configLM_PROXY_GRAPH_BUILD_BATCH
configLM_PROXY_RG_PATH
configLM_PROXY_CLONE_DEDUP
configLM_PROXY_FILE_CLONE_SOURCE
configLM_PROXY_DUPLICATE_ROLLOUT_STAGE
configLM_PROXY_DUPLICATE_EXPERIMENTS
configLM_PROXY_DUPLICATE_TELEMETRY
configLM_PROXY_DUPLICATE_TELEMETRY_PATH
configCONDA_EXE
configCONDA_DEFAULT_ENV
configCONDA_PREFIX
configLM_PROXY_INDEX_PYTHON
configLM_PROXY_PYTHON
configLM_PROXY_CONDA_ENV
configLM_BASE
configLM_EMBED_BATCH_SIZE
configLM_EMBED_CONCURRENCY
configLM_PROXY_GRAPH_ENABLED
configLM_PROXY_NEO4J_DB
configLM_PROXY_MEMORY_EMBEDDING_DIM
configLM_PROXY_NEO4J_MAX_CONNECTION_POOL_SIZE
configLM_PROXY_NEO4J_CONNECTION_ACQUISITION_TIMEOUT
configLM_PROXY_NEO4J_MAX_TRANSACTION_RETRY_TIME
configLM_PROXY_NEO4J_LIVENESS_CHECK_TIMEOUT
configLM_PROXY_NEO4J_KEEP_ALIVE
configLM_PROXY_DEBUG
configLM_PROXY_MEMORY_EMBEDDING_MODEL
configLM_PROXY_MEMORY_RETRIEVAL_K
configLM_PROXY_MEMORY_EMBED_CACHE_SIZE
configLM_PROXY_MEMORY_RECENCY_HALF_LIFE
configLM_PROXY_MEMORY_ENABLED
configLM_PROXY_MEMORY_ENABLE_REDIS
configLM_PROXY_REDIS_URL
configLM_PROXY_PG_POOL_MIN
configLM_PROXY_PG_POOL_MAX
configLM_PROXY_MEMORY_SESSION_NAMESPACE
configLM_PROXY_MEMORY_MAX_RECENT_TURNS
configLM_PROXY_MEMORY_FACTS_PER_SECTION
configLM_PROXY_MEMORY_SUMMARIZER_MODEL
configLM_PROXY_MEMORY_TOOL_RAW_MAX_CHARS
configLM_PROXY_MEMORY_TOOL_SUMMARY_MAX_CHARS
configLM_PROXY_MEMORY_SUMMARY_MAX_WORDS
configLM_PROXY_MEMORY_SUMMARY_MAX_ITEMS_PER_SECTION
configLM_PROXY_MEMORY_MAX_INJECT_TURNS
configLM_PROXY_MEMORY_MODE
configLM_PROXY_MODEL_ALIASES
configLM_PROXY_FALLBACK_MODEL
configLM_PROXY_CONTEXT_LENGTH
configLM_PROXY_USE_RESPONSES_API
configLM_PROXY_LOOP_DETECT_THRESHOLD
configLM_PROXY_CONTEXT_WARN_TOKENS
configLM_PROXY_TOOL_DESC_MAX_CHARS
configLM_PROXY_PARAM_DESC_MAX_CHARS
configLM_PROXY_MAX_RECENT_MESSAGES
configLM_PROXY_MAX_OLD_MESSAGE_CHARS
configLM_PROXY_MAX_RECENT_MESSAGE_CHARS
configLM_PROXY_MAX_SYSTEM_PROMPT_CHARS
configLM_PROXY_MAX_TOOL_MESSAGE_CHARS
configLM_PROXY_CHUNK_CONCURRENCY
configLM_PROXY_SKIP_DIAGNOSTIC_FILES
configLM_PROXY_WATCHER_ENABLED
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployLM_PROXY_PG_DSN
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

44/44 tools missing one or more hints — search_memory (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); add_memory (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); list_memories (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +41 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Descriptions match behaviour

4 tools describe read intent but their handlers mutate — git_summary (line 76: r = subprocess.run(); grep_codebase (line 141: r = subprocess.run(); get_test_coverage_for (line 223: r = subprocess.run()

Rename the tool, rewrite the description, or move the side-effect into a separate clearly-named tool.

Tool handlers catch errors

32/37 tool handlers wrap calls in try/catch (86%)

Wrap each tool handler body in try/catch and return a structured error response.

License file

No license file

Add a LICENSE file (MIT, Apache-2.0, etc.).

Tests exist

No test files found

Add tests that exercise each declared tool.

No access to sensitive paths

Reads sensitive paths: ~/.gemini/antigravity/.env

Remove reads of sensitive system paths. If you genuinely need them, document why in the README.

Tool description accuracy

4 tools have description/behavior mismatches: git_summary: description implies read-only but handler writes/deletes/executes; grep_codebase: description implies read-only but handler writes/deletes/executes; get_test_coverage_for: description implies read-only but handler writes/deletes/executes

Update tool descriptions to accurately reflect all capabilities — especially write, delete, or execute operations.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 8 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/glassing-wind-rest-proxy-di7iwc?variant=verified)](https://m8ven.ai/mcp/glassing-wind-rest-proxy-di7iwc)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 1435c68cf0e418bf01682d608b6f4c1115add37c
code hash: d10b99903c8ea826c89f9dd80847ac799cfbf46e2a9892e63952675721486082
verified: 8/8/2026, 8:00:02 AM
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client