We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TeamDay-AI/se-ranking-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
list-project-groups.js•540 B
import { ApiType, BaseTool } from '../../base-tool.js';
export class ListProjectGroups extends BaseTool {
apiType = ApiType.PROJECT;
registerTool(server) {
server.registerTool(this.toolName('listProjectGroups'), {
title: 'List Project Groups',
description: 'Project Tool: Requires a project ID. Get a list of all project groups from a user account.',
inputSchema: {},
}, async () => this.makeGetRequest('/site-groups', {}));
}
}
//# sourceMappingURL=list-project-groups.js.map