Marineconnect mcp safety
Skill Marineconnect/marineconnect-agent-skills/plugins/marineconnect-ops/skills/marineconnect-mcp-safety
Installable MarineConnect agent skills and OAuth-backed MCP plugin for Codex and ChatGPT Work mode.
npx -y skills add Marineconnect/marineconnect-agent-skills --skill marineconnect-mcp-safetyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 17 days oldThe repository was created 17 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Apply MarineConnect MCP safety rules. Use for production MarineConnect operations, MCP QC, OAuth-connected MarineConnect sessions, SuperAdmin permission checks, read-safe Phase 2 workflows, and any request that could accidentally trigger write, reboot, cancel, opt-in, opt-out, deactivate, delete, or pricing mutation behavior.
SKILL.md
1.7 KB, as published. Nobody here has run it
MarineConnect MCP Safety
Use this skill to prevent unsafe production operations.
Hard Rules
- Phase 2 skills are read-safe. Do not execute write tools.
- Treat reboot, Wi-Fi update, opt-in, opt-out, cancel invoice, delete package, deactivate, reactivate, execute import, and pricing mutation as blocked unless a future write phase explicitly enables them.
- Preflight and preview tools are allowed when they do not mutate state.
- Never invent ids. Resolve ids through MCP tools.
- Do not expose secrets, bearer tokens, credentials, private keys, payment identifiers, or raw PII beyond what is needed to answer the operational question.
- If a tool returns zero rows, report that as evidence, not as a failure unless the user requested proof of data presence.
Required Checks
- Confirm the MarineConnect MCP server is connected when tool calls fail unexpectedly.
- Confirm authorization is SuperAdmin before assuming access to all groups.
- Use
mcp_health_checkandmcp_get_runtime_connectivityfor platform health questions. - Use
mcp_get_oauth_connected_clientsfor connected-client questions. - Use
mcp_get_tool_audit_logsor admin audit tools for traceability questions.
Output
- State whether the requested action is allowed in the current phase.
- Show the exact tool chain and params for any read/preflight calls.
- Separate facts from next recommendations.