create-sqlite-based-handler
Generate SQLite-based handlers on Flux MCP server using process ID and handler code, enabling automated creation and management of database interactions without manual coding.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| handlerCode | Yes | ||
| processId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"handlerCode": {
"type": "string"
},
"processId": {
"type": "string"
}
},
"required": [
"processId",
"handlerCode"
],
"type": "object"
}