Turn your AI coding assistant into a web data expert — extract structured knowledge from any website
Install the Nimble plugin and your AI coding assistant can create Web Search Agents for any website, extract structured data at scale, and search the live web — all from natural language prompts.
Step 1: Add the Nimble MCP server to Cursor:Replace NIMBLE_API_KEY in Cursor Settings > MCP Servers with your actual key.Step 2: Install skills and rules:
npx skills add Nimbleway/agent-skills -a cursor
npx skills add Nimbleway/agent-skills
The nimble-agents skill requires the MCP server. Connect it manually after installing:
Agent Skills are plug-and-play extensions that give AI coding assistants direct access to Nimble’s web data tools. Install once and your AI can search the live web, extract pages, map sites, and run structured data agents — automatically, from natural language.
Skill
Description
nimble-web-tools
Real-time web intelligence — search, extract, map, and crawl via the Nimble CLI
nimble-agents
Find, generate, and run agents to extract structured data from any website
MCP Server
Pre-configured Nimble MCP server connection for agent-to-API access
"Search for recent AI developments" → nimble search --query "recent AI developments" --search-depth lite"Extract the content from this URL" → nimble extract --url "https://example.com" --parse --format markdown"Map all pages on this docs site" → nimble map --url "https://docs.example.com" --limit 100"Crawl the API reference section" → nimble crawl run --url "https://docs.example.com/api" --limit 50
# Lite search (default — fast, token-efficient)nimble search --query "React hooks tutorial" --topic coding --search-depth lite# Search with AI-generated answernimble search --query "what is WebAssembly" --include-answer --search-depth lite# News with time filternimble search --query "AI developments" --topic news --time-range week --search-depth lite# Filter to specific domainsnimble search --query "auth best practices" \ --include-domain github.com \ --include-domain stackoverflow.com \ --search-depth lite
Use --search-depth lite (default) for fast responses (1–3s). Use
--search-depth deep when you need full page content for archiving or
full-text analysis.
# Discover all URLs on a sitenimble map --url "https://docs.example.com" --limit 100# Include subdomainsnimble map --url "https://example.com" --domain-filter subdomains
# Crawl a site (always set --limit)nimble crawl run --url "https://docs.example.com" --limit 50# Filter to specific pathsnimble crawl run --url "https://example.com" \ --include-path "/docs" \ --include-path "/api" \ --limit 100# Check crawl statusnimble crawl status --id "crawl-id"
For LLM-friendly output, prefer map + extract --parse --format markdown on
individual pages rather than crawl — crawl returns raw HTML which can be very
large.
The nimble-agents skill gives your AI assistant the power to extract structured data from any website. It uses a find-or-generate workflow: search for an existing agent, run it, and get structured data. If no agent exists for a site, it generates a custom one automatically.