compose

Pack: gitignore · Endpoint: https://gateway.pipeworx.io/gitignore/mcp

Compose a combined .gitignore from multiple templates, separated by headers.

Parameters

NameTypeRequiredDescription
namesarrayyese.g. [“Node”, “macOS”, “VisualStudioCode”]
itemsstringno

Example call

Arguments

{
  "names": [
    "Node",
    "macOS"
  ]
}

curl

curl -X POST https://gateway.pipeworx.io/gitignore/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"compose","arguments":{"names":["Node","macOS"]}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('compose', {
  "names": [
    "Node",
    "macOS"
  ]
});

More examples

{
  "names": [
    "Python",
    "VisualStudioCode",
    "macOS"
  ]
}

Response shape

Always returns: names, body

FieldTypeDescription
namesarrayList of template names that were composed
bodystringCombined .gitignore content with template sections separated by headers
Full JSON Schema
{
  "type": "object",
  "properties": {
    "names": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of template names that were composed"
    },
    "body": {
      "type": "string",
      "description": "Combined .gitignore content with template sections separated by headers"
    }
  },
  "required": [
    "names",
    "body"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gitignore": {
      "url": "https://gateway.pipeworx.io/gitignore/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026