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.
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).
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.
Tool surface (v1)
check_fitVerdict, usable context and decode speed for a model on given hardwaresearch_modelsFilter the catalog by size, license, modality, or memory budgetget_modelFull model card with quants, benchmarks, offers and licenserecommend_hardwareBest hardware for a model within a budgetcompare_buy_vs_rentBreak-even months for buying vs rentinglist_provider_offersHosted prices with privacy filters (EU-only, no-training, zero-retention)get_providerProvider profile with verified privacy termsget_benchmarksScores for one model with provenanceget_leaderboardRankings, sortable by score-per-dollar or score-per-GB-VRAMcompare_modelsSide-by-side specs, benchmarks and pricingget_license_termsParsed license terms: commercial use, MAU caps, restrictionswhats_newReleases and price changes from the last daysget_hardwareSpec sheet plus everything the device runssearch_guidesLLMap guides and articlesAttribution: data is free to use with a link back to LLMap. Tool schemas are versioned — breaking changes ship as v2, never in place.