@expcat/tigercat-mcp 2.1.3 → 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 ADDED
@@ -0,0 +1,28 @@
1
+ # @expcat/tigercat-mcp
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@expcat/tigercat-mcp.svg)](https://www.npmjs.com/package/@expcat/tigercat-mcp)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](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 (172 components, imported from",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expcat/tigercat-mcp",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "type": "module",
5
5
  "description": "MCP server routing LLMs to Tigercat skill references, fetched from GitHub Pages by default with a local checkout fallback",
6
6
  "license": "MIT",