feat: enhance function execution options and logging capabilities
CI / CD / Test and Build (push) Failing after 1m3s
CI / CD / Publish (push) Has been skipped

- Added `--route` and `--method` options to `function execute` command for better HTTP handling.
- Improved `get function` command to display additional function metadata including HTTP settings, cache status, network restrictions, RAM limits, timeouts, and tags.
- Removed deprecated `helloworld` command.
- Expanded `update function` command with new options for Docker mounts, network restrictions, and various installation flags, including better error handling for boolean and number options.
- Introduced environment variable management commands: `add`, `list`, and `remove` for account-wide environment variables.
- Added `export` command to export authenticated account data.
- Implemented `api openapi` and `api request` commands for direct API interaction.
- Created logging and rate limit management commands for functions.
- Added MCP tool commands for calling tools, fetching documentation, and initializing sessions.
- Introduced utility functions for JSON handling and environment variable normalization.
- Set up CI/CD pipeline with Gitea Actions for automated testing, building, and publishing.
- Updated configuration loading to support environment variables for instance and token.
This commit is contained in:
Space-Banane
2026-07-10 22:24:47 +02:00
parent 0434376b83
commit 97b2089857
33 changed files with 1037 additions and 675 deletions
+20
View File
@@ -0,0 +1,20 @@
import { getApiClient } from "../api.js";
let nextJsonRpcId = 1;
export async function callMcp(method: string, params?: unknown): Promise<unknown> {
const client = await getApiClient();
const id = nextJsonRpcId++;
const response = await client.post("/mcp", {
jsonrpc: "2.0",
id,
method,
...(params !== undefined ? { params } : {}),
});
if (response.data?.error) {
throw new Error(response.data.error.message || JSON.stringify(response.data.error));
}
return response.data?.result ?? response.data;
}