The home page
When you open the dashboard, you see a grid of category cards. Each card represents a data domain — for example, Medicare Advantage or Star Ratings — and shows the dashboard pages it contains. Categories group related models together. A category card shows the first three dashboard pages (platinum-layer charts) in that category, with a count of any additional pages.Pipeline layers
Every model in Soria belongs to a pipeline layer. The home page shows which layers are present in each category:
Platinum models are the pages you navigate to and interact with. Gold and silver models power them from underneath.
Tags
Dashboards are tagged for easy filtering. Tags like Medicare Advantage or Star Ratings appear on the home page as clickable chips. Click a tag to see only the dashboards associated with it.Tags are independent of categories. A dashboard can have multiple tags, and a tag can span multiple categories.
MCP tools
You can query dashboard data directly from your AI assistant using three MCP tools.list_dashboard_pages
Lists all dashboard pages with their titles, paths, and categories.
get_dashboard_page
Returns chart config, model info, and metadata for a single page.
get_dashboard_data
Queries the materialized data behind a dashboard page and returns column names and rows.
Filtering data
Pass afilters JSON string to inject a WHERE clause into the source query. Downstream metrics are recalculated on the filtered subset.
{"column": ["value1", "value2"]}. Multiple values for the same column are treated as IN (...).
Workspace isolation
All three tools accept an optionalenvironment parameter. Pass a workspace ID to scope results to that workspace’s data instead of production.