-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
52 lines (52 loc) · 1.57 KB
/
Copy pathplugin.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "phonezero",
"displayName": "PhoneZero",
"version": "0.4.3",
"description": "Phone skills for voice tasks (restaurant booking first). Need: Telnyx KYC + one US number, xAI team with ZDR off, API keys, Voice Agent Builder. Then /setup-phone-calling.",
"author": {
"name": "Function1st"
},
"homepage": "https://github.com/function1st/PhoneZero",
"repository": "https://github.com/function1st/PhoneZero",
"license": "MIT",
"logo": "assets/logo.png",
"keywords": [
"phone",
"voice",
"telnyx",
"grok",
"grok-bot",
"reservations",
"calling",
"mcp",
"skills"
],
"skills": "./skills/",
"mcpServers": "./mcp.json",
"commands": "./commands",
"variables": {
"type": "object",
"properties": {
"TELNYX_API_KEY": {
"type": "string",
"title": "Telnyx API key",
"description": "Secret. You need a Telnyx DID first. Injected as TELNYX_API_KEY into the Telnyx stdio MCP. Never paste this in chat."
},
"PHONEZERO_FROM_NUMBER": {
"type": "string",
"title": "From number",
"description": "The Telnyx US DID you already bought, E.164 (example fixture +15555550100). Caller ID and SIP bridge target."
},
"XAI_API_KEY": {
"type": "string",
"title": "xAI API key",
"description": "Secret. From an xAI team with ZDR OFF. Injected into the PhoneZero xAI MCP only — not the agent shell. After save, start a new conversation."
}
},
"required": [
"TELNYX_API_KEY",
"PHONEZERO_FROM_NUMBER",
"XAI_API_KEY"
]
}
}