📊 Available Endpoints
1. Get Custom MCP Configuration (POST):
URL: {base_url}/mcp.json
Description: Get customized MCP server configuration by selecting specific departments
Method: POST
Body: {{"departments": ["news", "economic_calendar", "traditional_indicator"]}}
2. Get All MCP Servers (GET):
URL: {base_url}/mcp_servers.json
Description: Get configuration for all available MCP servers
Method: GET
📋 Available Departments
{departments}
💡 Usage Examples
# Get custom configuration for specific departments
curl -X POST "{base_url}/mcp.json" \
-H "Content-Type: application/json" \
-d '{"departments": ["news", "economic_calendar"]}'
# Get all available servers
curl -X GET "{base_url}/mcp_servers.json"
🔧 Integration
Use the returned configuration with your MCP client to access financial analysis tools.