seizn-mcp 1.0.1 → 1.0.2
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 +33 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -137,3 +137,36 @@ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENS
|
|
|
137
137
|
---
|
|
138
138
|
|
|
139
139
|
Made with love by [Seizn](https://seizn.com)
|
|
140
|
+
|
|
141
|
+
## Troubleshooting
|
|
142
|
+
|
|
143
|
+
### Windows Encoding Issues (Korean/Japanese/Chinese garbled)
|
|
144
|
+
|
|
145
|
+
If non-ASCII characters appear as `???` or `�`, use the cmd wrapper:
|
|
146
|
+
|
|
147
|
+
```json
|
|
148
|
+
{
|
|
149
|
+
"mcpServers": {
|
|
150
|
+
"seizn": {
|
|
151
|
+
"command": "cmd",
|
|
152
|
+
"args": ["/c", "chcp 65001 >nul && npx -y seizn-mcp@latest"],
|
|
153
|
+
"env": {
|
|
154
|
+
"SEIZN_API_URL": "https://www.seizn.com",
|
|
155
|
+
"SEIZN_API_KEY": "your-api-key"
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
This sets the Windows console code page to UTF-8 (65001) before starting the server.
|
|
163
|
+
|
|
164
|
+
### Cache Issues
|
|
165
|
+
|
|
166
|
+
If you're not getting the latest version:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
npm cache clean --force
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Then restart your IDE/application.
|
package/package.json
CHANGED