{"id":"8c0eb7e0-221c-4767-93d4-da89416ff3a3","shortId":"w4eEfj","kind":"skill","title":"use-sapiom","tagline":"Access 97 cloud-service tools via Sapiom MCP server — scrape websites,","description":"# Sapiom\n\n97 cloud-service tools via one MCP server. Scrape, compute, store, search, generate — pay per use, no vendor accounts.\n\n## Quick Setup — MCP Server (Recommended)\n\n```bash\n# Claude Code CLI\nclaude mcp add sapiom --transport http https://api.sapiom.ai/v1/mcp\n```\n\n```json\n{\n  \"mcpServers\": {\n    \"sapiom\": {\n      \"type\": \"http\",\n      \"url\": \"https://api.sapiom.ai/v1/mcp\"\n    }\n  }\n}\n```\n\nBrowser auth is used automatically. To use an API key instead, add `--header \"Authorization:Bearer YOUR_KEY\"` or set the `headers` field. Get a key at https://app.sapiom.ai/settings.\n\n## When to Use\n\n- **Scrape & extract** web content, crawl sites, take screenshots\n- **Run code** in cloud sandboxes (Node, Python, Go, Rust) with file I/O and process management\n- **Store data** in Redis, Vector DB, Search Index, or ephemeral Postgres\n- **Search the web** with Linkup (fast) or You.com (thorough)\n- **Generate media** — images (Fal.ai), speech (ElevenLabs), sound effects\n- **Send messages** via queues, schedules, and pub/sub\n\n> Building an agent? Use **sapiom-agent-builder**. Just deploying code? Use **sapiom-deploy**.\n\n## Available Tools\n\n### Getting Started (2)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_status` | Check MCP session auth and tenant context |\n| `tool_discover` | Find the right tool by keyword (free) |\n\n### Scraping & Browser (9) — [details](references/scraping.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_fetch` | Fetch clean main content from a URL as markdown |\n| `sapiom_screenshot` | Capture a webpage screenshot (PNG URL) |\n| `sapiom_scrape` | Advanced scrape with format options and selectors |\n| `sapiom_crawl` | Crawl an entire website (async, returns job ID) |\n| `sapiom_crawl_status` | Check crawl job status and get results |\n| `sapiom_map` | Discover all URLs on a site (fast sitemap) |\n| `sapiom_extract` | Extract structured data with prompt + schema |\n| `sapiom_extract_status` | Check extract job status and get results |\n| `sapiom_site_search` | Search within a specific website's content |\n\n### Compute (31) — [details](references/compute.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_run` | Run code snippet in the cloud (Node/Python/Go/Rust) |\n| `sapiom_run_list` | List recent code runs |\n| `sapiom_run_get` | Get run result by ID |\n| `sapiom_sandbox_create` | Create a persistent cloud sandbox |\n| `sapiom_sandbox_list` | List active sandboxes |\n| `sapiom_sandbox_get` | Get sandbox details |\n| `sapiom_sandbox_delete` | Delete a sandbox |\n| `sapiom_sandbox_extend` | Extend sandbox lifetime |\n| `sapiom_sandbox_exec` | Execute a command in a sandbox |\n| `sapiom_sandbox_deploy` | Deploy sandbox as a persistent service |\n| `sapiom_sandbox_write_file` | Write a file to a sandbox |\n| `sapiom_sandbox_read_file` | Read a file from a sandbox |\n| `sapiom_sandbox_list_files` | List files in a sandbox directory |\n| `sapiom_sandbox_delete_file` | Delete a file from a sandbox |\n| `sapiom_sandbox_process_logs` | Get process stdout/stderr logs |\n| `sapiom_sandbox_process_list` | List running processes in a sandbox |\n| `sapiom_sandbox_process_get` | Get process details by PID |\n| `sapiom_sandbox_process_stop` | Gracefully stop a process |\n| `sapiom_sandbox_process_kill` | Force-kill a process |\n| `sapiom_sandbox_preview_create` | Create a public preview URL for a port |\n| `sapiom_sandbox_preview_list` | List active preview URLs |\n| `sapiom_sandbox_preview_delete` | Delete a preview URL |\n| `sapiom_sandbox_ports` | List open ports in a sandbox |\n| `sapiom_job_deploy` | Deploy a scheduled/triggered job |\n| `sapiom_job_list` | List deployed jobs |\n| `sapiom_job_get` | Get job details |\n| `sapiom_job_update` | Update job config |\n| `sapiom_job_delete` | Delete a job |\n| `sapiom_job_trigger` | Manually trigger a job execution |\n| `sapiom_job_list_executions` | List job execution history |\n| `sapiom_job_get_execution` | Get execution result by ID |\n\n### Data (23) — [details](references/data.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_redis_create` | Create a serverless Redis database |\n| `sapiom_redis_create_fixed` | Create a fixed-size Redis database |\n| `sapiom_redis_list` | List Redis databases |\n| `sapiom_redis_delete` | Delete a Redis database |\n| `sapiom_redis_update` | Rename a Redis database |\n| `sapiom_redis_command` | Execute any Redis command |\n| `sapiom_vector_create` | Create a vector index |\n| `sapiom_vector_list` | List vector indexes |\n| `sapiom_vector_delete` | Delete a vector index |\n| `sapiom_vector_update` | Update vector index settings |\n| `sapiom_vector_upsert` | Upsert vectors with metadata |\n| `sapiom_vector_query` | Query vectors by similarity |\n| `sapiom_searchindex_create` | Create a full-text search index |\n| `sapiom_searchindex_list` | List search indexes |\n| `sapiom_searchindex_delete` | Delete a search index |\n| `sapiom_searchindex_update` | Update search index schema |\n| `sapiom_searchindex_upsert` | Upsert documents into search index |\n| `sapiom_searchindex_query` | Query a search index |\n| `sapiom_database_create` | Provision an ephemeral Neon Postgres database |\n| `sapiom_database_price` | Get Postgres price estimate (free) |\n| `sapiom_database_list` | List active Postgres databases |\n| `sapiom_database_get` | Get Postgres database details + connection URI |\n| `sapiom_database_delete` | Delete a Postgres database |\n\n### Messaging (16) — [details](references/messaging.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_message_publish` | Publish a message to a URL endpoint |\n| `sapiom_message_enqueue` | Enqueue a message to a named queue |\n| `sapiom_message_batch` | Send multiple messages in one call |\n| `sapiom_message_get` | Get message delivery status |\n| `sapiom_message_cancel` | Cancel a pending message |\n| `sapiom_schedule_create` | Create a recurring schedule (cron) |\n| `sapiom_schedule_list` | List schedules |\n| `sapiom_schedule_get` | Get schedule details |\n| `sapiom_schedule_delete` | Delete a schedule |\n| `sapiom_schedule_pause` | Pause a schedule |\n| `sapiom_schedule_resume` | Resume a paused schedule |\n| `sapiom_queue_list` | List message queues |\n| `sapiom_queue_get` | Get queue details |\n| `sapiom_queue_delete` | Delete a queue |\n| `sapiom_queue_pause` | Pause a queue |\n| `sapiom_queue_resume` | Resume a paused queue |\n\n### Search (2) — [details](references/search.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_search` | Web search via Linkup — AI-synthesised answer with sources |\n| `sapiom_deep_search` | Web search via You.com — formatted web + news results |\n\n### AI Models (2) — [details](references/ai-models.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_chat` | Send a prompt to any LLM via OpenRouter |\n| `sapiom_list_models` | List available LLM models and pricing |\n\n### Audio (3) — [details](references/audio.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_text_to_speech` | Convert text to speech (ElevenLabs) |\n| `sapiom_sound_effects` | Generate sound effects from description |\n| `sapiom_list_voices` | List available ElevenLabs voices (free) |\n\n### Images (1) — [details](references/images.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_generate_image` | Generate images from text prompt (Fal.ai FLUX) |\n\n### Verify (2) — [details](references/verify.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_verify_send` | Send a verification code via SMS |\n| `sapiom_verify_check` | Check a 6-digit verification code |\n\n### Governance (6) — [details](references/governance.md)\n\n| Tool | Description |\n|------|-------------|\n| `sapiom_create_agent` | Register a named agent for tracking |\n| `sapiom_list_agents` | List registered agents |\n| `sapiom_create_spending_rule` | Create spending/usage limits |\n| `sapiom_list_spending_rules` | List spending rules |\n| `sapiom_create_transaction_api_key` | Create a new API key |\n| `sapiom_authenticate` | Get auth flow instructions |\n\n## Recipes\n\n### 1. Research a Topic\n`sapiom_search` (quick answer) → `sapiom_deep_search` (more results) → `sapiom_fetch` (read full articles) → `sapiom_chat` (summarize findings)\n\n### 2. Monitor a Page for Changes\n`sapiom_scrape` (get content) → `sapiom_redis_command` (store hash, compare with previous) → `sapiom_message_publish` (alert on change) → `sapiom_schedule_create` (run every hour)\n\n### 3. Build a Knowledge Base\n`sapiom_crawl` (crawl docs site) → `sapiom_crawl_status` (get pages) → `sapiom_vector_upsert` (store embeddings) → `sapiom_vector_query` (semantic search)\n\n### 4. Run & Deploy Code\n`sapiom_run` (test code snippet) → `sapiom_sandbox_create` (persistent environment) → `sapiom_sandbox_exec` (iterate) → `sapiom_job_deploy` (schedule for production)\n\n### 5. Generate Media\n`sapiom_generate_image` (create visuals) + `sapiom_text_to_speech` (narration) + `sapiom_sound_effects` (background audio)\n\n## Tips\n\n- `tool_discover` finds the right tool by keyword — it's free, use it when unsure\n- Pass `agentName` on gateway calls for per-agent spend tracking\n- `sapiom_search` (Linkup) = fast AI answer; `sapiom_deep_search` (You.com) = more raw results\n- Provision resources before using them: `sapiom_redis_create`, `sapiom_vector_create`, `sapiom_database_create`\n- Set spending rules via `sapiom_create_spending_rule` before deploying autonomous agents\n- `sapiom_database_price` is free — always check cost before creating a Postgres DB\n\n## SDK Access (Direct HTTP)\n\nFor direct HTTP calls without MCP, use the SDK:\n\n```bash\nnpm install @sapiom/fetch\n# or: npm install @sapiom/axios axios\n```\n\n```js\nconst { createFetch } = require(\"@sapiom/fetch\");\nconst safeFetch = createFetch({ apiKey: process.env.SAPIOM_API_KEY });\n\nconst res = await safeFetch(\"https://linkup.services.sapiom.ai/v1/search\", {\n  method: \"POST\",\n  headers: { \"Content-Type\": \"application/json\" },\n  body: JSON.stringify({ q: \"quantum computing\", depth: \"standard\", outputType: \"sourcedAnswer\" }),\n});\n```\n\nPython/curl: use standard HTTP with `X-402-Payment` header — see reference files for gateway URLs.\n\n## Troubleshooting\n\n| Issue | Cause | Fix |\n|-------|-------|-----|\n| 402 Payment Required | Insufficient balance or spending rule hit | Top up at app.sapiom.ai or check `sapiom_list_spending_rules` |\n| MCP connection refused | Wrong URL or auth issue | Verify URL is `https://api.sapiom.ai/v1/mcp`; try browser auth or check API key |\n| `tool_discover` returns nothing | Too vague query | Use specific keywords: \"scrape\", \"redis\", \"image\", \"search\" |\n| Scrape returns empty | JS-rendered page needs wait time | Use `sapiom_scrape` with `waitFor: 3000` instead of `sapiom_fetch` |\n| \"Resource not found\" | Using data tool before provisioning | Create first: `sapiom_redis_create`, `sapiom_vector_create`, etc. |\n| Database URI missing | DB still provisioning | Wait a few seconds, then `sapiom_database_get` to check status |\n\n## References\n\n| File | Domain | Tools |\n|------|--------|-------|\n| [scraping.md](references/scraping.md) | Firecrawl + Anchor Browser | 9 |\n| [compute.md](references/compute.md) | Sandboxes, Jobs, Runs | 31 |\n| [data.md](references/data.md) | Redis, Vector, Search, Postgres | 23 |\n| [messaging.md](references/messaging.md) | QStash Messages, Schedules, Queues | 16 |\n| [search.md](references/search.md) | Linkup + You.com | 2 |\n| [ai-models.md](references/ai-models.md) | OpenRouter Chat + Models | 2 |\n| [audio.md](references/audio.md) | ElevenLabs TTS + SFX | 3 |\n| [images.md](references/images.md) | Fal.ai Image Generation | 1 |\n| [verify.md](references/verify.md) | Prelude Phone Verification | 2 |\n| [governance.md](references/governance.md) | Agents, Rules, API Keys | 6 |\n\nFull docs: https://docs.sapiom.ai (append `.md` to any URL for raw markdown)","tags":["use","sapiom","skills","agent-skills","ai-agents"],"capabilities":["skill","source-sapiom","skill-use-sapiom","topic-agent-skills","topic-ai-agents","topic-sapiom"],"categories":["skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sapiom/skills/use-sapiom","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sapiom/skills","source_repo":"https://github.com/sapiom/skills","install_from":"skills.sh"}},"qualityScore":"0.454","qualityRationale":"deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 9 github stars · SKILL.md body (11,758 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:08:44.705Z","embedding":null,"createdAt":"2026-05-18T13:14:12.770Z","updatedAt":"2026-05-18T19:08:44.705Z","lastSeenAt":"2026-05-18T19:08:44.705Z","tsv":"'-402':1279 '/settings.':92 '/v1/mcp':54,63,1324 '/v1/search':1256 '1':927,1018,1452 '16':723,1429 '2':173,841,871,943,1040,1434,1440,1458 '23':545,1422 '3':896,1070,1446 '3000':1361 '31':288,1415 '4':1095 '402':1292 '5':1119 '6':962,967,1465 '9':196,1409 '97':5,17 'access':4,1217 'account':36 'activ':329,468,703 'add':48,75 'advanc':222 'agent':156,160,974,978,983,986,1161,1202,1461 'agentnam':1154 'ai':853,869,1168 'ai-models.md':1435 'ai-synthesis':852 'alert':1061 'alway':1208 'anchor':1407 'answer':855,1025,1169 'api':72,1004,1009,1248,1330,1463 'api.sapiom.ai':53,62,1323 'api.sapiom.ai/v1/mcp':52,61,1322 'apikey':1246 'app.sapiom.ai':91,1304 'app.sapiom.ai/settings.':90 'append':1469 'application/json':1263 'articl':1035 'async':235 'audio':895,1136 'audio.md':1441 'auth':65,181,1014,1317,1327 'authent':1012 'author':77 'automat':68 'autonom':1201 'avail':169,890,922 'await':1252 'axio':1237 'background':1135 'balanc':1296 'base':1074 'bash':42,1229 'batch':750 'bearer':78 'bodi':1264 'browser':64,195,1326,1408 'build':154,1071 'builder':161 'call':756,1157,1223 'cancel':766,767 'captur':214 'caus':1290 'chang':1045,1063 'chat':877,1037,1438 'check':178,242,270,959,960,1209,1306,1329,1398 'claud':43,46 'clean':204 'cli':45 'cloud':7,19,107,300,323 'cloud-servic':6,18 'code':44,105,164,296,307,954,965,1098,1102 'command':354,591,595,1052 'compar':1055 'comput':27,287,1268 'compute.md':1410 'config':512 'connect':713,1312 'const':1239,1243,1250 'content':99,206,286,1049,1261 'content-typ':1260 'context':184 'convert':905 'cost':1210 'crawl':100,230,231,240,243,1076,1077,1081 'creat':319,320,454,455,552,553,560,562,598,599,639,640,684,773,774,973,988,991,1002,1006,1066,1106,1125,1184,1187,1190,1196,1212,1374,1378,1381 'createfetch':1240,1245 'cron':778 'data':120,263,544,1370 'data.md':1416 'databas':557,568,574,581,588,683,690,692,700,705,707,711,716,721,1189,1204,1383,1395 'db':124,1215,1386 'deep':859,1027,1171 'delet':339,340,399,401,474,475,515,516,577,578,611,612,655,656,717,718,792,793,823,824 'deliveri':762 'deploy':163,168,360,361,490,491,499,1097,1115,1200 'depth':1269 'descript':175,200,292,549,727,845,875,900,917,931,947,971 'detail':197,289,336,431,506,546,712,724,789,820,842,872,897,928,944,968 'digit':963 'direct':1218,1221 'directori':396 'discov':186,251,1139,1333 'doc':1078,1467 'docs.sapiom.ai':1468 'document':671 'domain':1402 'effect':146,912,915,1134 'elevenlab':144,909,923,1443 'embed':1089 'empti':1348 'endpoint':737 'enqueu':740,741 'entir':233 'environ':1108 'ephemer':128,687 'estim':697 'etc':1382 'everi':1068 'exec':351,1111 'execut':352,526,530,533,538,540,592 'extend':345,346 'extract':97,260,261,268,271 'fal.ai':142,940,1449 'fast':135,257,1167 'fetch':202,203,1032,1365 'field':85 'file':114,370,373,380,383,390,392,400,403,1284,1401 'find':187,1039,1140 'firecrawl':1406 'first':1375 'fix':561,565,1291 'fixed-s':564 'flow':1015 'flux':941 'forc':447 'force-kil':446 'format':225,865 'found':1368 'free':193,698,925,1148,1207 'full':643,1034,1466 'full-text':642 'gateway':1156,1286 'generat':30,139,913,933,935,1120,1123,1451 'get':86,171,247,275,311,312,333,334,411,428,429,503,504,537,539,694,708,709,759,760,786,787,817,818,1013,1048,1083,1396 'go':111 'govern':966 'governance.md':1459 'grace':438 'hash':1054 'header':76,84,1259,1281 'histori':534 'hit':1300 'hour':1069 'http':51,59,1219,1222,1276 'i/o':115 'id':238,316,543 'imag':141,926,934,936,1124,1344,1450 'images.md':1447 'index':126,602,608,615,621,646,652,659,665,674,681 'instal':1231,1235 'instead':74,1362 'instruct':1016 'insuffici':1295 'issu':1289,1318 'iter':1112 'job':237,244,272,489,494,496,500,502,505,508,511,514,518,520,525,528,532,536,1114,1413 'js':1238,1350 'js-render':1349 'json':55 'json.stringify':1265 'key':73,80,88,1005,1010,1249,1331,1464 'keyword':192,1145,1341 'kill':445,448 'knowledg':1073 'lifetim':348 'limit':993 'linkup':134,851,1166,1432 'linkup.services.sapiom.ai':1255 'linkup.services.sapiom.ai/v1/search':1254 'list':304,305,327,328,389,391,418,419,466,467,482,497,498,529,531,571,572,605,606,649,650,701,702,781,782,811,812,887,889,919,921,982,984,995,998,1308 'llm':883,891 'log':410,414 'main':205 'manag':118 'manual':522 'map':250 'markdown':211,1476 'mcp':12,24,39,47,179,1225,1311 'mcpserver':56 'md':1470 'media':140,1121 'messag':148,722,729,733,739,743,749,753,758,761,765,770,813,1059,1426 'messaging.md':1423 'metadata':629 'method':1257 'miss':1385 'model':870,888,892,1439 'monitor':1041 'multipl':752 'name':746,977 'narrat':1131 'need':1353 'neon':688 'new':1008 'news':867 'node':109 'node/python/go/rust':301 'noth':1335 'npm':1230,1234 'one':23,755 'open':483 'openrout':885,1437 'option':226 'outputtyp':1271 'page':1043,1084,1352 'pass':1153 'paus':798,799,807,829,830,838 'pay':31 'payment':1280,1293 'pend':769 'per':32,1160 'per-ag':1159 'persist':322,365,1107 'phone':1456 'pid':433 'png':218 'port':462,481,484 'post':1258 'postgr':129,689,695,704,710,720,1214,1421 'prelud':1455 'preview':453,458,465,469,473,477 'previous':1057 'price':693,696,894,1205 'process':117,409,412,417,421,427,430,436,441,444,450 'process.env.sapiom':1247 'product':1118 'prompt':265,880,939 'provis':685,1177,1373,1388 'pub/sub':153 'public':457 'publish':730,731,1060 'python':110 'python/curl':1273 'q':1266 'qstash':1425 'quantum':1267 'queri':632,633,677,678,1092,1338 'queue':150,747,810,814,816,819,822,826,828,832,834,839,1428 'quick':37,1024 'raw':1175,1475 'read':379,381,1033 'recent':306 'recip':1017 'recommend':41 'recur':776 'redi':122,551,556,559,567,570,573,576,580,583,587,590,594,1051,1183,1343,1377,1418 'refer':1283,1400 'references/ai-models.md':873,1436 'references/audio.md':898,1442 'references/compute.md':290,1411 'references/data.md':547,1417 'references/governance.md':969,1460 'references/images.md':929,1448 'references/messaging.md':725,1424 'references/scraping.md':198,1405 'references/search.md':843,1431 'references/verify.md':945,1454 'refus':1313 'regist':975,985 'renam':585 'render':1351 'requir':1241,1294 'res':1251 'research':1019 'resourc':1178,1366 'result':248,276,314,541,868,1030,1176 'resum':804,805,835,836 'return':236,1334,1347 'right':189,1142 'rule':990,997,1000,1193,1198,1299,1310,1462 'run':104,294,295,303,308,310,313,420,1067,1096,1100,1414 'rust':112 'safefetch':1244,1253 'sandbox':108,318,324,326,330,332,335,338,342,344,347,350,357,359,362,368,376,378,386,388,395,398,406,408,416,424,426,435,443,452,464,472,480,487,1105,1110,1412 'sapiom':3,11,16,49,57,159,167,176,201,212,220,229,239,249,259,267,277,293,302,309,317,325,331,337,343,349,358,367,377,387,397,407,415,425,434,442,451,463,471,479,488,495,501,507,513,519,527,535,550,558,569,575,582,589,596,603,609,616,623,630,637,647,653,660,667,675,682,691,699,706,715,728,738,748,757,764,771,779,784,790,796,802,809,815,821,827,833,846,858,876,886,901,910,918,932,948,957,972,981,987,994,1001,1011,1022,1026,1031,1036,1046,1050,1058,1064,1075,1080,1085,1090,1099,1104,1109,1113,1122,1127,1132,1164,1170,1182,1185,1188,1195,1203,1307,1357,1364,1376,1379,1394 'sapiom-agent-build':158 'sapiom-deploy':166 'sapiom/axios':1236 'sapiom/fetch':1232,1242 'schedul':151,772,777,780,783,785,788,791,795,797,801,803,808,1065,1116,1427 'scheduled/triggered':493 'schema':266,666 'scrape':14,26,96,194,221,223,1047,1342,1346,1358 'scraping.md':1404 'screenshot':103,213,217 'sdk':1216,1228 'search':29,125,130,279,280,645,651,658,664,673,680,840,847,849,860,862,1023,1028,1094,1165,1172,1345,1420 'search.md':1430 'searchindex':638,648,654,661,668,676 'second':1392 'see':1282 'selector':228 'semant':1093 'send':147,751,878,950,951 'server':13,25,40 'serverless':555 'servic':8,20,366 'session':180 'set':82,622,1191 'setup':38 'sfx':1445 'similar':636 'site':101,256,278,1079 'sitemap':258 'size':566 'skill' 'skill-use-sapiom' 'sms':956 'snippet':297,1103 'sound':145,911,914,1133 'sourc':857 'source-sapiom' 'sourcedansw':1272 'specif':283,1340 'speech':143,904,908,1130 'spend':989,996,999,1162,1192,1197,1298,1309 'spending/usage':992 'standard':1270,1275 'start':172 'status':177,241,245,269,273,763,1082,1399 'stdout/stderr':413 'still':1387 'stop':437,439 'store':28,119,1053,1088 'structur':262 'summar':1038 'synthesis':854 'take':102 'tenant':183 'test':1101 'text':644,902,906,938,1128 'thorough':138 'time':1355 'tip':1137 'tool':9,21,170,174,185,190,199,291,548,726,844,874,899,930,946,970,1138,1143,1332,1371,1403 'top':1301 'topic':1021 'topic-agent-skills' 'topic-ai-agents' 'topic-sapiom' 'track':980,1163 'transact':1003 'transport':50 'tri':1325 'trigger':521,523 'troubleshoot':1288 'tts':1444 'type':58,1262 'unsur':1152 'updat':509,510,584,618,619,662,663 'upsert':625,626,669,670,1087 'uri':714,1384 'url':60,209,219,253,459,470,478,736,1287,1315,1320,1473 'use':2,33,67,70,95,157,165,1149,1180,1226,1274,1339,1356,1369 'use-sapiom':1 'vagu':1337 'vector':123,597,601,604,607,610,614,617,620,624,627,631,634,1086,1091,1186,1380,1419 'vendor':35 'verif':953,964,1457 'verifi':942,949,958,1319 'verify.md':1453 'via':10,22,149,850,863,884,955,1194 'visual':1126 'voic':920,924 'wait':1354,1389 'waitfor':1360 'web':98,132,848,861,866 'webpag':216 'websit':15,234,284 'within':281 'without':1224 'write':369,371 'wrong':1314 'x':1278 'you.com':137,864,1173,1433","prices":[{"id":"6de52c4b-52e4-44be-91a8-6e32f5dbda58","listingId":"8c0eb7e0-221c-4767-93d4-da89416ff3a3","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sapiom","category":"skills","install_from":"skills.sh"},"createdAt":"2026-05-18T13:14:12.770Z"}],"sources":[{"listingId":"8c0eb7e0-221c-4767-93d4-da89416ff3a3","source":"github","sourceId":"sapiom/skills/use-sapiom","sourceUrl":"https://github.com/sapiom/skills/tree/main/skills/use-sapiom","isPrimary":false,"firstSeenAt":"2026-05-18T13:14:12.770Z","lastSeenAt":"2026-05-18T19:08:44.705Z"}],"details":{"listingId":"8c0eb7e0-221c-4767-93d4-da89416ff3a3","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sapiom","slug":"use-sapiom","github":{"repo":"sapiom/skills","stars":9,"topics":["agent-skills","ai-agents","sapiom"],"license":"mit","html_url":"https://github.com/sapiom/skills","pushed_at":"2026-03-06T17:40:04Z","description":"Agent skills for Sapiom — instant access to paid services for AI agents","skill_md_sha":"4cf916422553d9df909721b180778a867a9f271d","skill_md_path":"skills/use-sapiom/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sapiom/skills/tree/main/skills/use-sapiom"},"layout":"multi","source":"github","category":"skills","frontmatter":{"name":"use-sapiom","description":"Access 97 cloud-service tools via Sapiom MCP server — scrape websites,"},"skills_sh_url":"https://skills.sh/sapiom/skills/use-sapiom"},"updatedAt":"2026-05-18T19:08:44.705Z"}}