@expcat/tigercat-mcp 2.1.2 → 2.1.4
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 +28 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @expcat/tigercat-mcp
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@expcat/tigercat-mcp)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
Read-only stdio MCP server that routes LLM clients to Tigercat skill references.
|
|
7
|
+
|
|
8
|
+
Default skill source is GitHub Pages: <https://expcat.github.io/Tigercat/mcp/>.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npx -y @expcat/tigercat-mcp
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
tigercat-mcp --root /path/to/Tigercat
|
|
16
|
+
tigercat-mcp --base-url https://mirror.example.com/mcp/
|
|
17
|
+
tigercat-mcp --doctor
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
`--root` reads a local checkout. `--base-url` (or `TIGERCAT_MCP_BASE_URL`) fetches a mirror.
|
|
21
|
+
`--doctor` checks inventory reachability and exits.
|
|
22
|
+
|
|
23
|
+
Full client config (`claude mcp add`, `mcpServers` JSON):
|
|
24
|
+
[root README MCP section](https://github.com/expcat/Tigercat/blob/main/README.md#mcp-接入ai-agent).
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
[MIT](https://opensource.org/licenses/MIT)
|
package/dist/index.js
CHANGED
|
@@ -724,7 +724,7 @@ function keywordMatches(task, normalizedTask, keyword) {
|
|
|
724
724
|
var JSON_MIME = "application/json";
|
|
725
725
|
var MARKDOWN_MIME = "text/markdown";
|
|
726
726
|
var TIGERCAT_SERVER_INSTRUCTIONS = [
|
|
727
|
-
"Tigercat is a Tailwind CSS React + Vue 3 UI library (
|
|
727
|
+
"Tigercat is a Tailwind CSS React + Vue 3 UI library (imported from",
|
|
728
728
|
"@expcat/tigercat-react / @expcat/tigercat-vue PascalCase subpaths such as",
|
|
729
729
|
"@expcat/tigercat-react/Button). Use this server BEFORE writing or reviewing any code",
|
|
730
730
|
"that touches Tigercat \u2014 it returns exact import subpaths, props/events, and",
|
package/package.json
CHANGED