Preview network handoff · alias: mcp.preview-network-handoff
preview_network_handoff
Validate and preview a trace-linked handoff between any two discovered PlatPhormNews projects without executing downstream work.
mcppublic readread
1. Fill the arguments
The schema is authoritative. Do not infer parameters from the alias.
{
"type": "object",
"properties": {
"from": {
"type": "string",
"description": "Discovered source project hostname or slug"
},
"to": {
"type": "string",
"description": "Discovered target project hostname or slug"
},
"kind": {
"type": "string",
"enum": [
"project",
"tool",
"resource",
"prompt",
"api"
]
},
"capability": {
"type": "string"
},
"intent": {
"type": "string"
}
},
"required": [
"from",
"to",
"kind"
]
}2. Call the canonical name
POST this JSON-RPC envelope to https://mcp.platphormnews.com/mcp.
{
"jsonrpc": "2.0",
"id": "call-1",
"method": "tools/call",
"params": {
"name": "preview_network_handoff",
"arguments": {}
}
}