Documentation

Everything an agent needs to read the job market

People, companies and live job postings, over one REST API and one MCP server. Start with the quickstart if you want it working in five minutes, or the API reference if you already know the shape.

Connect it to what you already use

Four skills that teach any assistant the endpoints, the field vocabulary, and the two-step shape. They work in any agent, with MCP or without it.

The assistant now knows the endpoints and the field names, so it writes the request itself instead of guessing at the shape.

Search biotech companies with 50 to 500 employees and show me what comes back.

All four skills
shell
npx skills add MetixAI-Official/metix-skills

# Four skills: people search, company search,
# job search, and one that spans all three when
# a question needs more than one of them.

# Same key as everything else here. Set it in
# the shell you run the agent from:
export METIX_KEY="metix_xxxxxxxxxxxx"

Three datasets

How a request works

Every dataset works the same way, and it is worth knowing before you write any code: search hands back encrypted string IDs, and a second call turns the IDs you keep into records. There is no single call that does both.

Step
1
Call
Search the dataset with a Query Spec tree
What comes back
Encrypted string IDs, plus a cursor while more pages remain
Step
2
Call
Send up to 100 of those IDs to the detail route
What comes back
Full public records, and the IDs that could not be resolved
Step
3
Call
Join across datasets
What comes back
Company context for a job, or the people inside a company

Search results are IDs

A search response carries no record data. Code that expects records back from a search reads an empty payload and concludes there is nothing there. See the API overview for a worked example of both calls.

One data foundation, three access surfaces

Surface
Metix AI skills
Use it when
An agent needs reusable multi-step search and analysis instructions
Start here
/docs/skills
Surface
MCP
Use it when
A compatible client should reach the same data conversationally
Start here
/docs/mcp
Surface
REST API
Use it when
A product needs deterministic requests and JSON responses
Start here
/docs/quickstart

MCP schema boundary

Capability-specific MCP tool names are documented only after schema verification. Use the REST reference today instead of guessing a tool name.