-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
211 lines (211 loc) · 6.54 KB
/
Copy pathserver.json
File metadata and controls
211 lines (211 loc) · 6.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.sns45/dear-claude",
"description": "Spawn Claude Code instances from 6 platforms when 'Dear Claude' is mentioned.",
"repository": {
"url": "https://github.com/sns45/dear-claude",
"source": "github"
},
"version": "1.2.0",
"packages": [
{
"registryType": "npm",
"identifier": "dear-claude",
"version": "1.2.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DEAR_CLAUDE_PORT",
"description": "HTTP server port for webhooks (default: 3334)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "DEAR_CLAUDE_HOST",
"description": "Bind address for the HTTP server (default: 127.0.0.1, loopback only)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "DEAR_CLAUDE_DATA_DIR",
"description": "Override the data directory (default: $XDG_DATA_HOME/dear-claude or ~/.local/share/dear-claude)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "DEAR_CLAUDE_API_TOKEN",
"description": "Token guarding the /api/* and /mcp control endpoints (auto-generated at <dataDir>/api-token if unset)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "TAILSCALE_HOSTNAME",
"description": "Override Tailscale hostname for webhook URLs (auto-detected if not set)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "GITHUB_CLIENT_ID",
"description": "GitHub OAuth App or GitHub App client ID",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "GITHUB_CLIENT_SECRET",
"description": "GitHub OAuth App or GitHub App client secret",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "GITHUB_WEBHOOK_SECRET",
"description": "GitHub webhook signature secret",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "GITHUB_ACCESS_TOKEN",
"description": "GitHub personal access token (alternative to OAuth)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "GITHUB_APP_ID",
"description": "GitHub App ID (for installation-based auth)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "GITHUB_APP_PRIVATE_KEY_PATH",
"description": "Path to GitHub App private key PEM file",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINEAR_CLIENT_ID",
"description": "Linear OAuth application client ID",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "LINEAR_CLIENT_SECRET",
"description": "Linear OAuth application client secret",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "LINEAR_WEBHOOK_SECRET",
"description": "Linear webhook signing secret",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "LINEAR_ACCESS_TOKEN",
"description": "Linear personal API key (alternative to OAuth)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "JIRA_DOMAIN",
"description": "Jira Cloud domain (e.g. 'mycompany' for mycompany.atlassian.net)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "JIRA_USER_EMAIL",
"description": "Jira account email for API authentication",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "JIRA_API_TOKEN",
"description": "Jira API token from id.atlassian.com",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "JIRA_WEBHOOK_SECRET",
"description": "Shared secret for Jira webhook URL validation",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "GITLAB_ACCESS_TOKEN",
"description": "GitLab personal or project access token",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "GITLAB_WEBHOOK_SECRET",
"description": "GitLab webhook secret token",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "NOTION_CLIENT_ID",
"description": "Notion OAuth integration client ID",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "NOTION_CLIENT_SECRET",
"description": "Notion OAuth integration client secret",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "NOTION_ACCESS_TOKEN",
"description": "Notion internal integration token (alternative to OAuth)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "NOTION_WEBHOOK_SECRET",
"description": "Notion webhook verification secret",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "OBSIDIAN_VAULT_PATH",
"description": "Absolute path to Obsidian vault directory for file watching",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "GIPHY_API_KEY",
"description": "Giphy API key for embedding GIF reactions in responses",
"isRequired": false,
"format": "string",
"isSecret": true
}
]
}
]
}