deploy_heim_application
Deploys an application to the Heim MCP server's local runtime, making it accessible via http://127.0.0.1:3000/ as defined in the OpenAPI specification. Requires the application folder root path as input.
Instructions
Runs 'heim deploy' command to deploy an application to a local Heim runtime. Which will make the application availible on http://127.0.0.1:3000 where is the path defined in your OpenAPI specification
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | Absolute windows path to the application folder root |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Absolute windows path to the application folder root",
"type": "string"
}
},
"type": "object"
}