We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/timowhite88/Farnsworth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•509 B
"""
Farnsworth P2P Network Module
"Why use the phone company when you can communicate through
a network of interconnected doomsday devices?"
Peer-to-peer networking for distributed swarm operations.
"""
from farnsworth.p2p.bootstrap_nodes import (
BootstrapNodeManager,
BootstrapNode,
PeerInfo,
SwarmAnnouncement,
NodeStatus,
NodeRegion,
)
__all__ = [
"BootstrapNodeManager",
"BootstrapNode",
"PeerInfo",
"SwarmAnnouncement",
"NodeStatus",
"NodeRegion",
]