For agents & developers

Use LLMap as a data source

Everything on this site is available to your AI tools: a remote MCP server and a plain REST API, both backed by the same live database. Every result carries source_url anddata_synced_at.

01

MCP server

Add the endpoint to any MCP client (Claude Desktop, Cursor, or your own agent):

{
  "mcpServers": {
    "llmap": {
      "url": "https://llmap.ai/mcp"
    }
  }
}

Anonymous use is limited per IP — grab a free API key for 5 req/s & 20k requests/day (send it as Authorization: Bearer).

The server exposes 14 tools, resources (model://, hardware://, provider://, license://) and prompt templates (will_it_run, pick_a_model).

02

REST API

GET /api/v1/tools lists every tool with its JSON Schema; POST /api/v1/tools/:name runs one:

curl -X POST https://llmap.ai/api/v1/tools/check_fit \
  -H 'content-type: application/json' \
  -d '{
    "modelSlug": "qwen-qwen3-coder-next",
    "hardware": { "hardwareSlug": "rtx-4090" }
  }'

Plain read endpoints also exist:

  • /api/v1/models
  • /api/v1/hardware
  • /api/v1/providers
  • /api/v1/benchmarks/:slug/leaderboard
  • /api/v1/search?q=
  • /api/v1/models/:slug/omc.json

The omc.json endpoint exports each model as anOpen Model Cardwith pricing, capabilities and model relationships.

03

Tool surface (v1)

check_fitVerdict, usable context and decode speed for a model on given hardware
search_modelsFilter the catalog by size, license, modality, or memory budget
get_modelFull model card with quants, benchmarks, offers and license
recommend_hardwareBest hardware for a model within a budget
compare_buy_vs_rentBreak-even months for buying vs renting
list_provider_offersHosted prices with privacy filters (EU-only, no-training, zero-retention)
get_providerProvider profile with verified privacy terms
get_benchmarksScores for one model with provenance
get_leaderboardRankings, sortable by score-per-dollar or score-per-GB-VRAM
compare_modelsSide-by-side specs, benchmarks and pricing
get_license_termsParsed license terms: commercial use, MAU caps, restrictions
whats_newReleases and price changes from the last days
get_hardwareSpec sheet plus everything the device runs
search_guidesLLMap guides and articles

Attribution: data is free to use with a link back to LLMap. Tool schemas are versioned — breaking changes ship as v2, never in place.