@sentientui/mcp 0.5.0 → 0.5.1
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 +2 -0
- package/dist/{chunk-QH3RMHLM.js → chunk-TU6A7NHN.js} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/lib.cjs +1 -1
- package/dist/lib.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @sentientui/mcp
|
|
2
2
|
|
|
3
|
+
[](https://smithery.ai/servers/carlos-sanchez/sentientUI)
|
|
4
|
+
|
|
3
5
|
MCP server for [SentientUI](https://sentient-ui.com) — gives AI agents in Claude Code, Cursor, and Copilot direct access to your experiment data and management actions.
|
|
4
6
|
|
|
5
7
|
## Quick start
|
|
@@ -241,7 +241,7 @@ function registerComponentTools(server, client) {
|
|
|
241
241
|
},
|
|
242
242
|
async ({ projectId }) => {
|
|
243
243
|
const id = encodeURIComponent(projectId);
|
|
244
|
-
const components = await client.get(`/projects/${id}/components`);
|
|
244
|
+
const { components } = await client.get(`/projects/${id}/components`);
|
|
245
245
|
const structuredContent = {
|
|
246
246
|
components: components.map((c) => ({
|
|
247
247
|
componentId: c.component_id,
|
package/dist/index.cjs
CHANGED
|
@@ -249,7 +249,7 @@ function registerComponentTools(server, client) {
|
|
|
249
249
|
},
|
|
250
250
|
async ({ projectId }) => {
|
|
251
251
|
const id = encodeURIComponent(projectId);
|
|
252
|
-
const components = await client.get(`/projects/${id}/components`);
|
|
252
|
+
const { components } = await client.get(`/projects/${id}/components`);
|
|
253
253
|
const structuredContent = {
|
|
254
254
|
components: components.map((c) => ({
|
|
255
255
|
componentId: c.component_id,
|
package/dist/index.js
CHANGED
package/dist/lib.cjs
CHANGED
|
@@ -274,7 +274,7 @@ function registerComponentTools(server, client) {
|
|
|
274
274
|
},
|
|
275
275
|
async ({ projectId }) => {
|
|
276
276
|
const id = encodeURIComponent(projectId);
|
|
277
|
-
const components = await client.get(`/projects/${id}/components`);
|
|
277
|
+
const { components } = await client.get(`/projects/${id}/components`);
|
|
278
278
|
const structuredContent = {
|
|
279
279
|
components: components.map((c) => ({
|
|
280
280
|
componentId: c.component_id,
|
package/dist/lib.js
CHANGED