We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ramseur/SitecoreMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run.ts•441 B
/* File to test the other code */
import { PowershellClient } from './tools/powershell/client.js';
const client = new PowershellClient(
'https://xmcloudcm.localhost/',
'admin',
'b',
'sitecore'
);
const response = await client.executeScript(
'Get-Item -Path "master:/sitecore/content/Home"',);
console.log(response);
console.log(response[0].text); // Assuming the response is an array of objects with a 'text' property