@codacy/codacy-mcp
Version:
Codacy MCP server
14 lines (13 loc) • 489 B
JavaScript
import { defaultPagination, organizationSchema, toolNames } from '../schemas.js';
export const listOrganizationsTool = {
name: toolNames.CODACY_LIST_ORGANIZATIONS,
description: 'List organizations with pagination. \n Common mistakes: \n - Using this tool without the provider',
inputSchema: {
type: 'object',
properties: {
provider: organizationSchema.provider,
...defaultPagination,
},
required: ['provider'],
},
};