diff --git a/packages/mcp-provider-api/src/provider.ts b/packages/mcp-provider-api/src/provider.ts index 9b032b98..d71533b4 100644 --- a/packages/mcp-provider-api/src/provider.ts +++ b/packages/mcp-provider-api/src/provider.ts @@ -44,7 +44,7 @@ export abstract class McpProvider implements Versioned { } /** - * This method allows the server to check that this provider is return compatible prompts, resources, and tools to be registered. + * This method allows the server to check that this provider is returning compatible prompts, resources, and tools to be registered. * IMPORTANT: Subclasses should not override this method. */ public getVersion(): SemVer { diff --git a/packages/mcp-provider-code-analyzer/src/tools/query_code_analyzer_results.ts b/packages/mcp-provider-code-analyzer/src/tools/query_code_analyzer_results.ts index 44552f3c..5a185dc1 100644 --- a/packages/mcp-provider-code-analyzer/src/tools/query_code_analyzer_results.ts +++ b/packages/mcp-provider-code-analyzer/src/tools/query_code_analyzer_results.ts @@ -27,7 +27,7 @@ Examples (natural language → selector/topN): `; export const inputSchema = z.object({ - resultsFile: z.string().describe("Absolute path to a results JSON file produced by the code analyzer., if results file is not provided, call run_code_analyzer tool to generate a results file first."), + resultsFile: z.string().describe("Absolute path to a results JSON file produced by the code analyzer. If a results file is not provided, call run_code_analyzer tool to generate a results file first."), selector: z.string().describe('Selector (same semantics as "list_code_analyzer_rules"): colon-separated tokens with optional OR-groups in parentheses, e.g., "Security:(pmd,eslint):High".'), topN: z.number().int().positive().max(1000).default(DEFAULT_TOPN_POLICY_LIMIT) .describe(`Return at most this many violations after filtering and sorting (default ${DEFAULT_TOPN_POLICY_LIMIT}). Never increase this number unless the user explicitly asks for a larger result set. Requests >${DEFAULT_TOPN_POLICY_LIMIT} require allowLargeResultSet=true.`), diff --git a/packages/mcp-provider-devops/src/tools/sfDevopsPromoteWorkItem.ts b/packages/mcp-provider-devops/src/tools/sfDevopsPromoteWorkItem.ts index d92252b0..95ae6e44 100644 --- a/packages/mcp-provider-devops/src/tools/sfDevopsPromoteWorkItem.ts +++ b/packages/mcp-provider-devops/src/tools/sfDevopsPromoteWorkItem.ts @@ -65,14 +65,11 @@ export class SfDevopsPromoteWorkItem extends McpTool