Skip to main content
Glama

uninstall

Remove npm packages from a project by specifying the absolute path to the package directory and package names. Optionally uninstall globally.

Instructions

Remove packages from a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the package directory
packagesYesPackage names to uninstall
globalNoUninstall from global

Implementation Reference

  • The server.tool registration and handler for 'uninstall'. Invokes run() with ['uninstall', ...packages] and optionally '-g', then returns stdout+stderr as text content.
    server.tool(
      "uninstall",
      "Remove packages from a project",
      {
        path: z.string().describe("Absolute path to the package directory"),
        packages: z.array(z.string()).describe("Package names to uninstall"),
        global: z.boolean().optional().describe("Uninstall from global"),
      },
      async ({ path, packages, global: isGlobal }) => {
        const args = ["uninstall", ...packages];
        if (isGlobal) args.push("-g");
        try {
          const { stdout, stderr } = await run(args, path);
          return { content: [{ type: "text", text: stdout + stderr }] };
        } catch (e: any) {
          return {
            content: [{ type: "text", text: `Error: ${e.stderr || e.message}` }],
            isError: true,
          };
        }
      },
    );
  • Zod schema for uninstall tool: requires 'path' (string) and 'packages' (array of strings), optional 'global' boolean.
    {
      path: z.string().describe("Absolute path to the package directory"),
      packages: z.array(z.string()).describe("Package names to uninstall"),
      global: z.boolean().optional().describe("Uninstall from global"),
    },
  • src/index.ts:436-457 (registration)
    Registration of the 'uninstall' tool on the MCP server via server.tool(...) with name 'uninstall' and description 'Remove packages from a project'.
    server.tool(
      "uninstall",
      "Remove packages from a project",
      {
        path: z.string().describe("Absolute path to the package directory"),
        packages: z.array(z.string()).describe("Package names to uninstall"),
        global: z.boolean().optional().describe("Uninstall from global"),
      },
      async ({ path, packages, global: isGlobal }) => {
        const args = ["uninstall", ...packages];
        if (isGlobal) args.push("-g");
        try {
          const { stdout, stderr } = await run(args, path);
          return { content: [{ type: "text", text: stdout + stderr }] };
        } catch (e: any) {
          return {
            content: [{ type: "text", text: `Error: ${e.stderr || e.message}` }],
            isError: true,
          };
        }
      },
    );
  • src/index.ts:1295-1299 (registration)
    Secondary registration of 'uninstall' on sandbox (sandbox.tool call), using a noop handler.
    sandbox.tool("uninstall", "Remove packages from a project", {
      path: z.string().describe("Absolute path to the package directory"),
      packages: z.array(z.string()).describe("Package names to uninstall"),
      global: z.boolean().optional().describe("Uninstall from global"),
    }, noop);
  • The run() helper function that executes npm commands (execFile) with args, cwd, timeout, and env settings.
    async function run(
      args: string[],
      cwd?: string,
    ): Promise<{ stdout: string; stderr: string }> {
      const fullArgs = [...args, ...npmrcArgs];
      const opts: { cwd?: string; timeout: number; env: NodeJS.ProcessEnv; maxBuffer: number } = {
        timeout: 120_000,
        maxBuffer: 10 * 1024 * 1024, // 10MB buffer for large outputs
        env: { ...process.env, NO_COLOR: "1" },
      };
      if (cwd) opts.cwd = cwd;
      return exec(NPM, fullArgs, opts);
    }
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must fully disclose behavior. It only states 'Remove packages' without mentioning side effects, permissions, or whether dependencies are affected.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence, but it lacks structure and does not earn its place by adding value beyond the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 3 parameters and no output schema or annotations, the description is too minimal, lacking return value info and behavioral details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds no additional meaning beyond what the schema already provides for parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Remove packages from a project' uses a specific verb and resource, clearly distinguishing it from sibling tools like install or update.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use uninstall versus alternatives like prune or remove. The description does not provide context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/npm-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server