بنقرة واحدة
mmp
Standalone `mmp` executable for managing multiple MCP servers from a loaded gateway config.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Standalone `mmp` executable for managing multiple MCP servers from a loaded gateway config.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Technical reference for OpenSage-ADK — a Google ADK-based framework for long-horizon, tool-heavy AI agents. Covers architecture, configuration, customization, extension, and production agent patterns.
Find testcase IDs (TESTCASE nodes) that cover a given function (METHOD node) in Neo4j.
Code coverage analysis tools. These tools help analyze and visualize code coverage for test execution, upload coverage data to Neo4j, and display coverage statistics. Available tools: run-coverage, show-coverage.
Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.
Neo4j database management and query tools. These tools help interact with Neo4j databases for code analysis, graph queries, and data management. Available tools: neo4j-query.
Static code analysis tools using Joern and Neo4j. These tools perform advanced code analysis including control flow analysis, data flow analysis, call graph traversal, and program slicing. Available tools: joern-query, joern-slice, search-function, get-caller, get-callee, get-call-paths-to-function.
| name | mmp |
| description | Standalone `mmp` executable for managing multiple MCP servers from a loaded gateway config. |
| should_run_in_sandbox | main |
Use the standalone mmp executable inside the main sandbox. mmp is a CLI-first MCP multiplexing proxy that supports http, sse, and stdio transports, persistent session handles, and session reuse across calls.
mmp load gateway.toml
mmp ls
mmp call demo-http tools/list
mmp call demo-stdio echo --arg '{"value":"hello"}'
mmp call --id 9de6d26 resources/list
mmp ps
mmp rm --id 9de6d26
mmp rm --all
Type: subcommand
Load a TOML gateway config file and persist it as the active config for later mmp commands.
Type: subcommand
List servers from the active loaded config.
Type: subcommand
Create a new persistent session or resume an existing session and call an MCP method.
Type: subcommand
List tracked persistent sessions and their liveness.
Type: subcommand
Remove one persistent session or all sessions.
Type: str
Gateway TOML path for mmp load.
Type: str
Server name from the active loaded config for mmp call <server> <method>.
Type: str
MCP method name such as tools/list or resources/list.
Type: str
JSON string passed as arguments to mmp call.
Type: str
Existing session handle to resume with mmp call --id <id> <method> or remove with mmp rm --id <id>.
Type: bool (default: false)
Remove all tracked sessions with mmp rm --all.
Returns the underlying mmp CLI stdout/stderr. mmp call often returns JSON, while load, ls, ps, and rm usually return human-readable text tables or status lines.
main
Default timeout: 60 seconds