@thesage/mcp 0.8.1 → 0.8.3
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/LICENSE +21 -0
- package/README.md +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/registry.d.mts +1 -1
- package/dist/registry.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-2026 Shalom Ormsby
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -205,13 +205,13 @@ The server runs in stdio mode, communicating via stdin/stdout per the MCP specif
|
|
|
205
205
|
## Documentation
|
|
206
206
|
|
|
207
207
|
- **Full Documentation**: https://thesage.dev/
|
|
208
|
-
- **GitHub**: https://github.com/shalomormsby/
|
|
208
|
+
- **GitHub**: https://github.com/shalomormsby/sage-design-engine
|
|
209
209
|
- **MCP Specification**: https://modelcontextprotocol.io/
|
|
210
210
|
|
|
211
211
|
## Support
|
|
212
212
|
|
|
213
213
|
For issues or questions:
|
|
214
|
-
- GitHub Issues: https://github.com/shalomormsby/
|
|
214
|
+
- GitHub Issues: https://github.com/shalomormsby/sage-design-engine/issues
|
|
215
215
|
- Documentation: https://thesage.dev/#mcp-server
|
|
216
216
|
|
|
217
217
|
## License
|
package/dist/index.js
CHANGED
|
@@ -2680,7 +2680,7 @@ function formatInstallationInstructions(component) {
|
|
|
2680
2680
|
`;
|
|
2681
2681
|
output += `- **Documentation:** https://thesage.dev/#${component.category}/${component.name.toLowerCase().replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase()}
|
|
2682
2682
|
`;
|
|
2683
|
-
output += `- **GitHub:** https://github.com/shalomormsby/
|
|
2683
|
+
output += `- **GitHub:** https://github.com/shalomormsby/sage-design-engine/tree/main/packages/ui/src/components/${component.category}
|
|
2684
2684
|
`;
|
|
2685
2685
|
return output;
|
|
2686
2686
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -339,7 +339,7 @@ function formatInstallationInstructions(component) {
|
|
|
339
339
|
`;
|
|
340
340
|
output += `- **Documentation:** https://thesage.dev/#${component.category}/${component.name.toLowerCase().replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase()}
|
|
341
341
|
`;
|
|
342
|
-
output += `- **GitHub:** https://github.com/shalomormsby/
|
|
342
|
+
output += `- **GitHub:** https://github.com/shalomormsby/sage-design-engine/tree/main/packages/ui/src/components/${component.category}
|
|
343
343
|
`;
|
|
344
344
|
return output;
|
|
345
345
|
}
|
package/dist/registry.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Component Registry for Sage UI
|
|
3
3
|
*
|
|
4
|
-
* This registry contains metadata for all
|
|
4
|
+
* This registry contains metadata for all 99 components in @thesage/ui,
|
|
5
5
|
* organized into 7 core functional categories plus 4 specialty categories.
|
|
6
6
|
*
|
|
7
7
|
* Core Categories (7):
|
package/dist/registry.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Component Registry for Sage UI
|
|
3
3
|
*
|
|
4
|
-
* This registry contains metadata for all
|
|
4
|
+
* This registry contains metadata for all 99 components in @thesage/ui,
|
|
5
5
|
* organized into 7 core functional categories plus 4 specialty categories.
|
|
6
6
|
*
|
|
7
7
|
* Core Categories (7):
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thesage/mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "Model Context Protocol server for Sage Design Engine - discover and integrate components with AI assistants",
|
|
5
5
|
"author": "Shalom Ormsby",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/shalomormsby/
|
|
8
|
+
"url": "https://github.com/shalomormsby/sage-design-engine.git",
|
|
9
9
|
"directory": "packages/mcp"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://thesage.dev/#mcp-server",
|
|
12
|
-
"bugs": "https://github.com/shalomormsby/
|
|
12
|
+
"bugs": "https://github.com/shalomormsby/sage-design-engine/issues",
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|