compose
Pack: gitignore · Endpoint: https://gateway.pipeworx.io/gitignore/mcp
Compose a combined .gitignore from multiple templates, separated by headers.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
names | array | yes | e.g. [“Node”, “macOS”, “VisualStudioCode”] |
items | string | no |
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
| Field | Type | Description |
|---|---|---|
names | array | List of template names that were composed |
body | string | Combined .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.