Emerging. No concerning findings. Grades remain capped until the project builds reputation through adoption. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code 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

clockparadox

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
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
🔐
You'll be asked for 8 credentials: HA_TOKEN, DECIDER_API_KEY, NEO4J_PASSWORD, MEM_API_KEY, ONEBOT_ACCESS_TOKEN, QQ_BOT_SECRET, SEARCH_API_KEY, TELEGRAM_BOT_TOKEN
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.
configHA_URL/ HA_TOKEN Home Assistant URL and long-lived token
🔐 secretHA_TOKENeyJhbGciOi... # Long-lived access token
configOPENCODE_MODEL_NAMEq36 # model name for opencode to use
configMEM_RETENTION_TIMEDays to retain short-term memory files (default: 3)
configSKILLS_DIR3. Custom skills directory can be set via environment variable
configamap_apiAmap (高德) weather API key
configmail_account/ mail_api QQ email account and SMTP auth code
configmail_apimail_account / QQ email account and SMTP auth code
configMAIN_PORTFastAPI server port (default: 8000)
configTERMINAL_ALLOWED_DIRFilesystem path sandbox for terminal MCP server
configDECIDER_MODEL_NAMEqwen3-235b-a22b
configASSISTANT_NAMEBot's display name (default: lyric)
configDECIDER_BASE_URLBase URL for the decision-making model API
🔐 secretDECIDER_API_KEYAPI key for the decider model
configSAVE_URL
configSTATUS_NOTIFY
configMCP_PORT
configEMBEDDERQwen3-Embedding:0.6B
configNEO4J_URIneo4j://your-neo4j-host:7687
configNEO4J_USERNAME/ NEO4J_PASSWORD Neo4j credentials
🔐 secretNEO4J_PASSWORDyour-password
configMEM_MODEL_NAMEqwen3-235b-a22b
configMEM_BASE_URL/ MEM_MODEL_NAME Model for memory extraction
🔐 secretMEM_API_KEYAPI key for memory model
configONEBOT_WS_URLws://127.0.0.1:3001
🔐 secretONEBOT_ACCESS_TOKENyour-token
configCHAT_API_URLThe Telegram bot (telebot.py) long-polls the Telegram API for new messages. Each incoming text or file is forwarded via HTTP POST to the FastAPI server at (default http://127.0.0.1:8000/chat).
configCHAT_API_TIMEOUT
configONEBOT_BOT_QQauto-detected
configONEBOT_GROUP_ONLY_ATtrue # safety: only reply to @mentions in groups
configONEBOT_RATE_LIMIT0.5 # seconds between replies
configSTICKER_ENABLE
configBATCH_TIMEOUT
configPROACTIVE_TZ
configPROACTIVE_ENABLE
configPROACTIVE_START
configPROACTIVE_END
configPROACTIVE_MIN_INTERVAL
configPROACTIVE_MAX_INTERVAL
configQQ_BOT_APP_ID
🔐 secretQQ_BOT_SECRETyour-app-secret
configQQ_SANDBOX3. In sandbox mode (=true), add yourself as a tester. Only testers can interact.
configSEARCH_MODEL_NAMEqwen3-235b-a22b
configSEARCH_BASE_URL/ SEARCH_MODEL_NAME Model for memory search queries
🔐 secretSEARCH_API_KEYAPI key for search model
configADMIN_USERS
🔐 secretTELEGRAM_BOT_TOKENTelegram Bot API token
configTELEGRAM_BASE_URLTelegram API URL (default: https://api.telegram.org; use proxy domain for GFW)
configTELEGRAM_SSL_VERIFY3. SSL verification — can be disabled for proxy servers with self-signed certs (not recommended for production)
configVOICE
configPOLLING_TIMEOUT2. Long-polling timeout — (default 30s) prevents long TCP connections from being detected
configMODEL_VISIONempty = local Qwen2-VL, true = use API vision mode
configVISION_MODEL_NAME
configVISION_MAX_TOKENS
configVISION_LOAD_IN_4BIT
configBLOCKER_THRESHOLD
// 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

15/15 tools missing one or more hints — call_tool (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); ha_get_device_states (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); ha_control_device (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +12 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.

Tool inputs are validated

8/9 tool handlers declare input schemas (89%)

Declare an inputSchema with zod/joi/yup on every tool definition.

License file

No license file

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

Tool test coverage

Only 2/15 tools referenced in tests (13%)

Write tests that reference each tool by name so every tool has at least one test.

Shell command execution

1 child_process/subprocess call in production code — runs shell commands (src/back/models/blocker/__init__.py:88)

Prefer library functions over shell-outs. If you must shell out, ensure all inputs are properly escaped.

Secrets not logged

2 secret values sent to console.log

Redact or omit secret values from log output.

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 7 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 Score](https://m8ven.ai/badge/mcp/clockparadox-lyric-1l7xp0)](https://m8ven.ai/mcp/clockparadox-lyric-1l7xp0)
Shows your grade and updates automatically. Prefer no grade? Append ?variant=verified to the badge URL.
commit: 8e0eb4295e1dbd16a65a99e2c76b6a7b5e54cf50
code hash: 42a3764f5d234634470a0d5c15251b46cea188dd83b88fc5b249b4238b4a74e3
verified: 8/13/2026, 7:52:58 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