elfa_status
Display current ELFA configuration with masked keys and .env file loading status to verify sentiment data integration for crypto market analysis.
Instructions
Show current ELFA config (key masked) and .env load info.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp-server.js:159-167 (handler)The asynchronous handler function that executes the elfa_status tool. It returns the current ELFA base URL, environment loading info, and masked authentication details."elfa_status": async () => { return { content: textContent({ base: ELFA_BASE, loaded: ENV_INFO.loaded, from: ENV_INFO.from, vars: ENV_INFO.vars, auth: { headerName: ELFA_AUTH.headerName || "", scheme: ELFA_AUTH.scheme || "", key: maskKey(ELFA_AUTH.key) } }) }; },
- mcp-server.js:281-284 (registration)The tool registration object in the tools array, defining the name, description, empty input schema (no parameters required), and annotations.{ name:"elfa_status", description:"Show current ELFA config (key masked) and .env load info.", inputSchema:{ type:"object", properties:{} }, annotations:{ title:"ELFA: Status", readOnlyHint:true, openWorldHint:false }
- mcp-server.js:283-283 (schema)The input schema for elfa_status, which is an empty object indicating no input parameters are required.inputSchema:{ type:"object", properties:{} },