Landed MCP Server

Search AI-native jobs, inspect application forms, and fetch free interview-prep resources.

Remote serverstreamable-httpTypeScript

What is the Landed MCP server?

Most developer tooling work still happens through a UI a human drives. Landed MCP server moves it into the conversation instead. Search AI-native jobs, inspect application forms, and fetch free interview-prep resources.

The short version

It speaks Streamable HTTP and works with any MCP client. Use the hosted server in seconds, or self-host this repo against your own Landed API.

The tools it exposes

The server publishes 8 tools. What each one is for:

  • search_jobs — Ranked, fit-scored jobs. Supports physical city/country labels plus canonical remote-eligibility country/region codes; free text is parsed
  • get_job_form — Application form for a jobId, grouped standard / screening / eeo for answer prep
  • get_learning_content — Curated interview-prep, portfolio, and roadmap resources
  • Cursor — Create .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):
  • Windsurf — The Windsurf tool exposed by this server
  • Registries — The Registries tool exposed by this server
  • Prerequisites — The Prerequisites tool exposed by this server
  • Endpoints — The Endpoints tool exposed by this server

What it needs from you

Configuration is passed through the environment: LANDED_INTERNAL_SECRET, INTERNAL_SERVICE_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js ≥ 20 - pnpm (npm i -g pnpm) - A Landed API base URL and its shared internal secret

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Landed's toolset — search_jobs, get_job_form, get_learning_content and 5 more — is a fair guide to whether it matches your workflow. It is maintained by landedjobs; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
search_jobsRanked, fit-scored jobs. Supports physical city/country labels plus canonical remote-eligibility country/region codes; free text is parsed server-side.
get_job_formApplication form for a jobId, grouped standard / screening / eeo for answer prep.
get_learning_contentCurated interview-prep, portfolio, and roadmap resources.
CursorCreate .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):
WindsurfThe Windsurf tool exposed by this server.
RegistriesThe Registries tool exposed by this server.
PrerequisitesThe Prerequisites tool exposed by this server.
EndpointsThe Endpoints tool exposed by this server.

How to install the Landed MCP server

{
  "mcpServers": {
    "landed": {
      "command": "npx",
      "args": ["-y", "pnpm"],
      "env": {
        "LANDED_INTERNAL_SECRET": "your-value",
        "INTERNAL_SERVICE_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js ≥ 20 - pnpm (npm i -g pnpm) - A Landed API base URL and its shared internal secret
VariableDescriptionRequired
LANDED_INTERNAL_SECRETCredential the server authenticates with.Yes
INTERNAL_SERVICE_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Landed to search jobs.
  • Use Landed to get job form.
  • Use Landed to get learning content.

Frequently asked questions

It connects Landed to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (search_jobs, get_job_form, get_learning_content, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Landed directly.