config-status
Check the current configuration status of your Coolify deployments to verify settings and ensure proper operation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp-server.ts:48-57 (registration)Registration of the 'config-status' tool with an inline handler that returns a fixed error message about missing Coolify configuration when client setup fails. No input schema is defined.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-57 (handler)Inline handler function for 'config-status' tool, which always returns a text content explaining the configuration issue.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.' }] }) );