@sentio/mcp
Version:
sentio mcp
127 lines (126 loc) • 3.83 kB
JavaScript
import { WebService } from "@sentio/api";
import z from "zod";
export async function getCurrentUserOrOrg(client) {
const response = await client.get({
url: "/api/v1/users"
});
if (response.error) {
// if err, it's possible using a org api key
const response = await client.get({
url: "/api/v1/organizations"
});
if (response.error) {
throw response.error;
}
const org = response.data;
return { org };
}
const user = response.data;
return { user };
}
export function registerWebTools(server, client, options) {
const host = options.host;
server.tool("listDashboards", "List all dashboards in a project", {
owner: z.string().describe("Project owner"),
slug: z.string().describe("Project slug"),
}, async ({ owner, slug }) => {
const response = await WebService.listDashboards2({
path: {
owner,
slug
},
client
});
if (response.error) {
throw response.error;
}
return {
content: [{
type: "text",
text: JSON.stringify(response.data)
}]
};
});
server.tool("getDashboard", "Get a dashboard by id", {
owner: z.string().describe("Project owner"),
slug: z.string().describe("Project slug"),
dashboardId: z.string().describe("Dashboard ID"),
}, async ({ owner, slug, dashboardId }) => {
const response = await WebService.getDashboard2({
path: {
owner,
slug,
dashboardId
},
client
});
if (response.error) {
throw response.error;
}
return {
content: [{
type: "text",
text: JSON.stringify(response.data)
}]
};
});
server.tool("importDashboard", "Import a dashboard to another dashboard", {
dashboardId: z.string().describe("Target Dashboard ID"),
dashboardJson: z.string().describe("Dashboard JSON to import"),
}, async ({ dashboardId, dashboardJson }) => {
const response = await WebService.importDashboard({
body: {
dashboardId,
dashboardJson: JSON.parse(dashboardJson)
},
client
});
if (response.error) {
throw response.error;
}
return {
content: [{
type: "text",
text: JSON.stringify(response.data)
}]
};
});
server.tool("deleteDashboard", "Delete a dashboard by id", {
dashboardId: z.string().describe("Dashboard ID"),
}, async ({ dashboardId }) => {
const response = await WebService.deleteDashboard({
path: {
dashboardId
},
client
});
if (response.error) {
throw response.error;
}
return {
content: [{
type: "text",
text: "Dashboard deleted successfully"
}]
};
});
server.tool("exportDashboard", "Export a dashboard to json", {
dashboardId: z.string().describe("Dashboard ID"),
}, async ({ dashboardId }) => {
const response = await WebService.exportDashboard({
path: {
dashboardId
},
client
});
if (response.error) {
throw response.error;
}
return {
content: [{
type: "text",
text: JSON.stringify(response.data)
}]
};
});
}