Search org code · alias: mcp.search-org-code
search_org_code
Search code across supported orgs (mbarbine, process-co, ph3ar). Requires GITHUB_TOKEN.
externalPLATPHORM_API_KEY requiredread
1. Fill the arguments
The schema is authoritative. Do not infer parameters from the alias.
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Code search query"
},
"org": {
"type": "string",
"enum": [
"mbarbine",
"process-co",
"ph3ar"
],
"description": "Org to search"
},
"language": {
"type": "string"
},
"per_page": {
"type": "number"
}
},
"required": [
"query",
"org"
]
}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": "search_org_code",
"arguments": {}
}
}