We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ajdoyl2/claude-data-stack-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
agg_department_stats.sql•358 B
{{ config(materialized='table') }}
select
department,
count(*) as employee_count,
avg(annual_salary) as avg_salary,
min(annual_salary) as min_salary,
max(annual_salary) as max_salary,
sum(annual_salary) as total_payroll,
current_timestamp as created_at
from {{ ref('stg_employees') }}
group by department
order by avg_salary desc