UNPKG

it-tools-mcp

Version:

MCP-compliant server access to over 100 IT tools and utilities commonly used by developers, system administrators, and IT professionals.

26 lines (25 loc) 887 B
import { z } from "zod"; import fs from "fs"; export function registerGrep(server) { server.registerTool("grep", { inputSchema: { pattern: z.string().describe("Pattern to search for"), file: z.string().describe("File path") }, // VS Code compliance annotations annotations: { title: "Grep", readOnlyHint: false } }, async ({ pattern, file }) => { try { const data = fs.readFileSync(file, "utf8"); const lines = data.split("\n"); const matches = lines.filter(line => line.includes(pattern)); return { content: [{ type: "text", text: matches.join("\n") }] }; } catch (error) { return { content: [{ type: "text", text: `grep failed: ${error instanceof Error ? error.message : error}` }] }; } }); }