@taiga-ui/mcp 0.1.0-alpha.3 → 0.1.0-alpha.5
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 +4 -4
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -27,13 +27,13 @@ First, install the Taiga UI MCP server with your client.
|
|
|
27
27
|
|
|
28
28
|
**Standard config** works in most of the tools:
|
|
29
29
|
|
|
30
|
-
```
|
|
30
|
+
```json5
|
|
31
31
|
{
|
|
32
32
|
"mcpServers": {
|
|
33
33
|
"taiga-ui": {
|
|
34
34
|
"command": "npx",
|
|
35
35
|
"args": [
|
|
36
|
-
"@taiga-ui/mcp@latest",
|
|
36
|
+
"@taiga-ui/mcp@latest",
|
|
37
37
|
"--source-url=https://taiga-ui.dev/llms-full.txt" // or file from "/next" version, if you want
|
|
38
38
|
]
|
|
39
39
|
}
|
|
@@ -52,7 +52,7 @@ First, install the Taiga UI MCP server with your client.
|
|
|
52
52
|
- Input: optional `query` string to filter IDs (case-insensitive substring).
|
|
53
53
|
- Output: strictly structured JSON containing `items`, `total`, `query`.
|
|
54
54
|
|
|
55
|
-
```
|
|
55
|
+
```json5
|
|
56
56
|
{
|
|
57
57
|
"items": [
|
|
58
58
|
{ "id": "components/Alert", "name": "Alert", "category": "components", "package": "CORE", "type": "component" }
|
|
@@ -69,7 +69,7 @@ First, install the Taiga UI MCP server with your client.
|
|
|
69
69
|
- Input: `{ names: string[] }` (each name length ≥ 2).
|
|
70
70
|
- Output: `results` array with objects: `query`, `id` (if resolved), `package`, `type`, `suggestions` (only when unresolved), `content` (array of code blocks, if examples exist). Top-level also includes `matched` (count of resolved names).
|
|
71
71
|
|
|
72
|
-
```
|
|
72
|
+
```json5
|
|
73
73
|
{
|
|
74
74
|
"results": [
|
|
75
75
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/mcp",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.5",
|
|
4
4
|
"description": "Model Context Protocol server providing Taiga UI documentation search and scaffolding tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"clean": "rm -rf dist",
|
|
42
42
|
"build": "npm run clean && tsc && chmod +x dist/index.js",
|
|
43
43
|
"prepublishOnly": "npm run build",
|
|
44
|
-
"release": "npm
|
|
44
|
+
"release": "npm publish --access public --tag latest",
|
|
45
|
+
"postrelease": "npm dist-tag add @taiga-ui/mcp@$(node -p 'require(`./package.json`).version') alpha"
|
|
45
46
|
},
|
|
46
47
|
"engines": {
|
|
47
48
|
"node": ">=18.0.0"
|