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
dim_employees.sql•374 B
{{ config(materialized='table') }}
select
employee_id,
employee_name,
employee_email,
hire_date,
department,
annual_salary,
case
when annual_salary >= 90000 then 'Senior'
when annual_salary >= 70000 then 'Mid-Level'
else 'Junior'
end as salary_tier,
current_timestamp as created_at
from {{ ref('stg_employees') }}