-
Notifications
You must be signed in to change notification settings - Fork 610
Description
MoltBridge MCP Server
I'm publishing MoltBridge to the MCP Registry and wanted to confirm the process and namespace.
Repository: https://github.com/SageMindAI/moltbridge
npm package: moltbridge
Website: https://moltbridge.ai
server.json name: io.github.JKHeadley/moltbridge
Description
MoltBridge is an MCP server providing network intelligence for AI agents. Tools include broker discovery, capability matching, agent registration, Ed25519-signed trust attestation, and credibility packet generation.
Question
The repo lives under SageMindAI org on GitHub but I'd like to publish under namespace io.github.JKHeadley/moltbridge since I (JKHeadley) am the author. The server.json is already in the repo at src/mcp/server.json. Is the correct next step to use the mcp-publisher CLI with GitHub OAuth auth?
server.json
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.JKHeadley/moltbridge",
"description": "Network intelligence for AI agents. Broker discovery and capability matching.",
"repository": {
"url": "https://github.com/SageMindAI/moltbridge",
"source": "github"
},
"version": "0.1.1",
"packages": [
{
"registryType": "npm",
"identifier": "moltbridge",
"version": "0.1.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Your MoltBridge agent ID",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "MOLTBRIDGE_AGENT_ID"
},
{
"description": "Your Ed25519 signing key (base64url encoded)",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "MOLTBRIDGE_SIGNING_KEY"
}
]
}
]
}Any guidance on the publish workflow appreciated. Happy to use the mcp-publisher CLI directly once confirmed.