config-status
Check and retrieve the current configuration status of Coolify MCP Server deployments to ensure proper setup and operational readiness.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp-server.ts:48-57 (registration)Registers the 'config-status' tool. The tool has an empty input schema and an inline asynchronous handler function that returns a markdown content block explaining that the Coolify MCP server is running but lacks required environment variable configuration (COOLIFY_API_URL and COOLIFY_API_TOKEN). This registration occurs when the configuration check fails.server.tool( 'config-status', {}, async () => ({ content: [{ type: 'text', text: 'Coolify MCP server is running but not configured. Please set COOLIFY_API_URL and COOLIFY_API_TOKEN environment variables to enable Coolify API access.' }] }) );
- src/mcp-server.ts:51-56 (handler)Inline handler function for the 'config-status' tool. It executes by returning a static response indicating the server is unconfigured, providing instructions on required environment variables. No input parameters are processed.async () => ({ content: [{ type: 'text', text: 'Coolify MCP server is running but not configured. Please set COOLIFY_API_URL and COOLIFY_API_TOKEN environment variables to enable Coolify API access.' }] })