atlas-mcp-server

by cyanheads
Verified

atlas_skill_invoke

Executes specific skills (individually or combined)

Input Schema

NameRequiredDescriptionDefault
parametersNoOptional parameters to pass to the skills
skillsYesArray of skill names to invoke. Can use dot notation for combining skills (e.g., 'software-engineer.typescript.git')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "parameters": { "additionalProperties": {}, "description": "Optional parameters to pass to the skills", "type": "object" }, "skills": { "description": "Array of skill names to invoke. Can use dot notation for combining skills (e.g., 'software-engineer.typescript.git')", "items": { "type": "string" }, "minItems": 1, "type": "array" } }, "required": [ "skills" ], "type": "object" }