superclaude-kiro 1.0.7 → 1.0.8
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 +44 -0
- package/dist/mcp/mcp-servers.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,10 +156,41 @@ npm version patch
|
|
|
156
156
|
npm publish
|
|
157
157
|
```
|
|
158
158
|
|
|
159
|
+
## MCP Server Setup
|
|
160
|
+
|
|
161
|
+
SuperClaude includes 5 pre-configured MCP servers. Most work out of the box, but **MorphLLM** requires an API key.
|
|
162
|
+
|
|
163
|
+
### MorphLLM Fast Apply (Optional but Recommended)
|
|
164
|
+
|
|
165
|
+
The `morphllm-fast-apply` MCP server provides ultra-fast file editing (10,500+ tokens/sec). To enable it:
|
|
166
|
+
|
|
167
|
+
1. **Create a free account** at [morphllm.com](https://www.morphllm.com)
|
|
168
|
+
2. **Get your API key** from [dashboard/api-keys](https://www.morphllm.com/dashboard/api-keys)
|
|
169
|
+
3. **Set the environment variable** (add to your shell profile):
|
|
170
|
+
|
|
171
|
+
```bash
|
|
172
|
+
# Add to ~/.zshrc or ~/.bashrc
|
|
173
|
+
export MORPH_API_KEY="your-api-key-here"
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
4. **Restart your terminal** or run `source ~/.zshrc`
|
|
177
|
+
|
|
178
|
+
**Pricing**: Free tier includes 500 requests/month. Paid usage is ~$1/million tokens.
|
|
179
|
+
|
|
180
|
+
### Other MCP Servers (No Setup Required)
|
|
181
|
+
|
|
182
|
+
| Server | Purpose |
|
|
183
|
+
|--------|---------|
|
|
184
|
+
| `sequential-thinking` | Structured reasoning and problem-solving |
|
|
185
|
+
| `context7` | Library documentation lookup |
|
|
186
|
+
| `playwright` | Browser automation and testing |
|
|
187
|
+
| `serena` | Semantic code analysis and editing |
|
|
188
|
+
|
|
159
189
|
## Requirements
|
|
160
190
|
|
|
161
191
|
- Node.js 18+
|
|
162
192
|
- Kiro CLI installed (`~/.kiro` directory exists)
|
|
193
|
+
- (Optional) MorphLLM API key for fast file editing
|
|
163
194
|
|
|
164
195
|
## Troubleshooting
|
|
165
196
|
|
|
@@ -183,6 +214,19 @@ kiro-cli mcp list
|
|
|
183
214
|
cat ~/.kiro/settings/mcp.json
|
|
184
215
|
```
|
|
185
216
|
|
|
217
|
+
### MorphLLM not working
|
|
218
|
+
|
|
219
|
+
```bash
|
|
220
|
+
# Check if API key is set
|
|
221
|
+
echo $MORPH_API_KEY
|
|
222
|
+
|
|
223
|
+
# If empty, add to your shell profile
|
|
224
|
+
echo 'export MORPH_API_KEY="your-key-here"' >> ~/.zshrc
|
|
225
|
+
source ~/.zshrc
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
Get your API key from [morphllm.com/dashboard/api-keys](https://www.morphllm.com/dashboard/api-keys)
|
|
229
|
+
|
|
186
230
|
### Reinstall from scratch
|
|
187
231
|
|
|
188
232
|
```bash
|