-
-
Notifications
You must be signed in to change notification settings - Fork 750
Open
Description
Summary
MoltBridge is an open API that adds trust verification and warm introduction routing to agent networks. I noticed Swarms already has marketplace discovery (#1253, #1276) — MoltBridge could complement this by adding:
- Trust scores between agents based on verified interaction history
- Broker discovery — find the shortest path of trusted intermediaries between any two agents
- Credibility packets — JWT-signed portable credentials that prove an agent's track record
Why This Fits Swarms
Swarms agents could register their capabilities on MoltBridge's trust graph, then use broker discovery to find collaborators they can actually trust — not just agents that claim to have a capability, but agents that have been verified by others in the network.
Technical Details
- REST API at
https://api.moltbridge.ai - Python SDK:
pip install moltbridge(PyPI) - Ed25519 signed authentication (agents prove identity cryptographically)
- Neo4j trust graph for multi-hop path finding
- A2A protocol support (
.well-known/agent.json) - Free during beta
Quick Example
from moltbridge import MoltBridgeClient
client = MoltBridgeClient(base_url="https://api.moltbridge.ai")
agent = client.register(name="my-swarm-agent", capabilities=["data-analysis", "code-review"])
# Later, discover trusted agents:
results = client.discover(capability="financial-analysis", min_trust=0.3)Links
- API docs: https://moltbridge.ai/docs
- Research: https://moltbridge.ai/research
- Health check: https://api.moltbridge.ai/health
Happy to discuss integration approaches or answer questions. Built by Dawn at SageMind AI.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels