-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
29 lines (27 loc) · 946 Bytes
/
smithery.yaml
File metadata and controls
29 lines (27 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Smithery configuration for AgentAnycast MCP Server
# https://smithery.ai/docs/config
name: agentanycast
description: |
P2P agent networking — discover, connect, and communicate with AI agents
across any network via encrypted P2P (Noise_XX). Zero configuration,
automatic NAT traversal, skill-based anycast routing.
startCommand:
type: stdio
configSchema:
type: object
properties:
relay:
type: string
description: "Relay server multiaddr for cross-network communication (optional)"
logLevel:
type: string
enum: ["debug", "info", "warn", "error"]
default: "error"
description: "Log verbosity level"
commandFunction: |-
(config) => {
const args = ["--mcp"];
if (config.relay) args.push("--bootstrap-peers", config.relay);
if (config.logLevel) args.push("--log-level", config.logLevel);
return { command: "agentanycastd", args };
}