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
import { z } from 'zod';
import { ApiType, BaseTool } from '../../base-tool.js';
export class UpdateKeywordGroup extends BaseTool {
apiType = ApiType.PROJECT;
registerTool(server) {
server.registerTool(this.toolName('updateKeywordGroup'), {
title: 'Update Keyword Group',
description: 'Project Tool: Requires a project ID. Update the name of a project keyword group.',
inputSchema: {
group_id: z.number().int().describe('ID of the keyword group to update'),
name: z.string().min(1).describe('New keyword group name'),
},
}, async ({ group_id, name }) =>
// PUT /keyword-groups/{group_id}
// Body: {"name": "new name"}
this.request(`/keyword-groups/${group_id}`, 'PUT', { name }));
}
}
//# sourceMappingURL=update-keyword-group.js.map