kratos-mcp 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ npm install kratos-mcp
|
|
|
74
74
|
### 1️⃣ Configure Your AI Tool
|
|
75
75
|
|
|
76
76
|
<details>
|
|
77
|
-
<summary><b>Claude Desktop</b></summary>
|
|
77
|
+
<summary><b>Claude Desktop (Official Anthropic App)</b></summary>
|
|
78
78
|
|
|
79
79
|
Add to `~/.config/claude/claude_desktop_config.json`:
|
|
80
80
|
|
|
@@ -93,7 +93,7 @@ Add to `~/.config/claude/claude_desktop_config.json`:
|
|
|
93
93
|
<details>
|
|
94
94
|
<summary><b>Cursor</b></summary>
|
|
95
95
|
|
|
96
|
-
Add to `.cursor/mcp_config.json
|
|
96
|
+
Add to `.cursor/mcp_config.json` in your project root:
|
|
97
97
|
|
|
98
98
|
```json
|
|
99
99
|
{
|
|
@@ -107,10 +107,122 @@ Add to `.cursor/mcp_config.json`:
|
|
|
107
107
|
```
|
|
108
108
|
</details>
|
|
109
109
|
|
|
110
|
+
<details>
|
|
111
|
+
<summary><b>Windsurf (Codeium)</b></summary>
|
|
112
|
+
|
|
113
|
+
Add to `~/.windsurf/mcp_config.json`:
|
|
114
|
+
|
|
115
|
+
```json
|
|
116
|
+
{
|
|
117
|
+
"mcpServers": {
|
|
118
|
+
"kratos": {
|
|
119
|
+
"command": "npx",
|
|
120
|
+
"args": ["kratos-mcp"]
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
```
|
|
125
|
+
</details>
|
|
126
|
+
|
|
127
|
+
<details>
|
|
128
|
+
<summary><b>Cline (VSCode Extension)</b></summary>
|
|
129
|
+
|
|
130
|
+
1. Open VSCode settings (Cmd+, or Ctrl+,)
|
|
131
|
+
2. Search for "Cline MCP"
|
|
132
|
+
3. Add to MCP Servers configuration:
|
|
133
|
+
|
|
134
|
+
```json
|
|
135
|
+
{
|
|
136
|
+
"kratos": {
|
|
137
|
+
"command": "npx",
|
|
138
|
+
"args": ["kratos-mcp"]
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Or add to `.vscode/settings.json`:
|
|
144
|
+
|
|
145
|
+
```json
|
|
146
|
+
{
|
|
147
|
+
"cline.mcpServers": {
|
|
148
|
+
"kratos": {
|
|
149
|
+
"command": "npx",
|
|
150
|
+
"args": ["kratos-mcp"]
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
</details>
|
|
156
|
+
|
|
157
|
+
<details>
|
|
158
|
+
<summary><b>Continue.dev</b></summary>
|
|
159
|
+
|
|
160
|
+
Add to `~/.continue/config.json`:
|
|
161
|
+
|
|
162
|
+
```json
|
|
163
|
+
{
|
|
164
|
+
"models": [...],
|
|
165
|
+
"mcpServers": {
|
|
166
|
+
"kratos": {
|
|
167
|
+
"command": "npx",
|
|
168
|
+
"args": ["kratos-mcp"]
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
```
|
|
173
|
+
</details>
|
|
174
|
+
|
|
175
|
+
<details>
|
|
176
|
+
<summary><b>Zed</b></summary>
|
|
177
|
+
|
|
178
|
+
Add to `~/.config/zed/settings.json`:
|
|
179
|
+
|
|
180
|
+
```json
|
|
181
|
+
{
|
|
182
|
+
"assistant": {
|
|
183
|
+
"mcp_servers": {
|
|
184
|
+
"kratos": {
|
|
185
|
+
"command": "npx",
|
|
186
|
+
"args": ["kratos-mcp"]
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
```
|
|
192
|
+
</details>
|
|
193
|
+
|
|
194
|
+
<details>
|
|
195
|
+
<summary><b>Void</b></summary>
|
|
196
|
+
|
|
197
|
+
Add to `~/.void/config.json`:
|
|
198
|
+
|
|
199
|
+
```json
|
|
200
|
+
{
|
|
201
|
+
"mcp": {
|
|
202
|
+
"servers": {
|
|
203
|
+
"kratos": {
|
|
204
|
+
"command": "npx",
|
|
205
|
+
"args": ["kratos-mcp"]
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
```
|
|
211
|
+
</details>
|
|
212
|
+
|
|
110
213
|
<details>
|
|
111
214
|
<summary><b>Other MCP Tools</b></summary>
|
|
112
215
|
|
|
113
|
-
Kratos works with any tool supporting the Model Context Protocol.
|
|
216
|
+
Kratos works with any tool supporting the Model Context Protocol. The general format is:
|
|
217
|
+
|
|
218
|
+
```json
|
|
219
|
+
{
|
|
220
|
+
"command": "npx",
|
|
221
|
+
"args": ["kratos-mcp"]
|
|
222
|
+
}
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
Check your tool's documentation for specific MCP server configuration location.
|
|
114
226
|
|
|
115
227
|
</details>
|
|
116
228
|
|