--- 🔥 Firecrawl The API to search, scrape, and interact with the web at scale. 🔥 The web context API to find sources, extract content, and turn it into clean…
---
🔥 Firecrawl
The API to search, scrape, and interact with the web at scale. 🔥 The web context API to find sources, extract content, and turn it into clean Markdown or structured data your agents can ship with. Open source and available as a hosted service.
_Pst. Hey, you, join our stargazers :)_
---
Why Firecrawl?
- Industry-leading reliability: Covers 96% of the web, including JS-heavy pages — no proxy headaches, just clean data (see benchmarks)
- Blazingly fast: P95 latency of 3.4s across millions of pages, built for real-time agents and dynamic apps
- LLM-ready output: Clean markdown, structured JSON, screenshots, and more — spend fewer tokens, build better AI apps
- We handle the hard stuff: Rotating proxies, orchestration, rate limits, JS-blocked content, and more — zero configuration
- Agent ready: Connect Firecrawl to any AI agent or MCP client with a single command
- Media parsing: Parse and extract content from web-hosted PDFs, DOCX, and more
- Actions: Click, scroll, write, wait, and press before extracting content
- Open source: Developed transparently and collaboratively — join our community
Feature Overview
Core Endpoints
| Feature | Description |
|---------|-------------|
| [Search](#search) | Search the web and get full page content from results |
| [Scrape](#scrape) | Convert any URL to markdown, HTML, screenshots, or structured JSON |
| [Interact](#interact) | Scrape a page, then interact with it using AI prompts or code |
More
| Feature | Description |
|---------|-------------|
| [Agent](#agent) | Automated data gathering, just describe what you need |
| [Crawl](#crawl) | Scrape all URLs of a website with a single request |
| [Map](#map) | Discover all URLs on a website instantly |
| [Batch Scrape](#batch-scrape) | Scrape thousands of URLs asynchronously |
---
Quick Start
Sign up at firecrawl.dev to get your API key. Try the playground to test it out.
Search
Search the web and get full content from results.
python
from firecrawl import Firecrawl
app = Firecrawl(api_key="fc-YOUR_API_KEY")
search_result = app.search("firecrawl", limit=5)
Node.js / cURL / CLI
Node.jsjavascript
import { Firecrawl } from 'firecrawl';
const app = new Firecrawl({apiKey: "fc-YOUR_API_KEY"});
app.search("firecrawl", { limit: 5 })
cURL
bash
curl -X POST 'https://api.firecrawl.dev/v2/search' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"query": "firecrawl",
"limit": 5
}'
CLI
bash
firecrawl search "firecrawl" --limit 5
Output:
json
[
{
"url": "https://firecrawl.dev",
"title": "Firecrawl",
"markdown": "Turn websites into..."
},
{
"url": "https://docs.firecrawl.dev",
"title": "Firecrawl Docs",
"markdown": "# Getting Started..."
}
]
Scrape
Get LLM-ready data from any website — markdown, JSON, screenshots, and more.
python
from firecrawl import Firecrawl
app = Firecrawl(api_key="fc-YOUR_API_KEY")
result = app.scrape('firecrawl.dev')
Node.js / cURL / CLI
Node.jsjavascript
import { Firecrawl } from 'firecrawl';
const app = new Firecrawl({ apiKey: "fc-YOUR_API_KEY" });
app.scrape('firecrawl.dev')
cURL
bash
curl -X POST 'https://api.firecrawl.dev/v2/scrape' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"url": "firecrawl.dev"
}'
CLI
bash
firecrawl scrape https://firecrawl.dev
firecrawl https://firecrawl.dev --only-main-content
Output:
# Firecrawl
Firecrawl helps AI systems search, scrape, and interact with the web.
## Features
- Search: Find information across the web
- Scrape: Clean data from any page
- Interact: Click, navigate, and operate pages
- Agent: Autonomous data gathering
Interact
Scrape a page, then interact with it using AI prompts or code.
python
from firecrawl import Firecrawl
app = Firecrawl(api_key="fc-YOUR_API_KEY")
result = app.scrape("https://amazon.com")
scrape_id = result.metadata.scrape_id
app.interact(scrape_id, prompt="Search for 'mechanical keyboard'")
app.interact(scrape_id, prompt="Click the first result")
Node.js / cURL / CLI
Node.jsjavascript
import { Firecrawl } from 'firecrawl';
const app = new Firecrawl({apiKey: "fc-YOUR_API_KEY"});
const result = await app.scrape("https://amazon.com");
await app.interact(result.metadata.scrapeId, {
prompt: "Search for 'mechanical keyboard'"
});
await app.interact(result.metadata.scrapeId, {
prompt: "Click the first result"
});
cURL
bash
# 1. Scrape the page
curl -X POST 'https://api.firecrawl.dev/v2/scrape' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"url": "https://amazon.com"}'
# 2. Interact with the page (use scrapeId from step 1)
curl -X POST 'https://api.firecrawl.dev/v2/scrape/SCRAPE_ID/interact' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"prompt": "Search for mechanical keyboard"}'
CLI
bash
firecrawl scrape https://amazon.com
firecrawl interact exec --prompt "Search for 'mechanical keyboard'"
firecrawl interact exec --prompt "Click the first result"
Output:
json
{
"success": true,
"output": "Keyboard available at $100",
"liveViewUrl": "https://liveview.firecrawl.dev/..."
}
---
Power Your Agent
Connect Firecrawl to any AI agent or MCP client in minutes.
Skill
Give your agent easy access to real-time web data with one command.
bash
npx -y firecrawl-cli@latest init --all --browser
Restart your agent after installing. Works with Claude Code, Antigravity, OpenCode, and more.
MCP
Connect any MCP-compatible client to the web in seconds.
json
{
"mcpServers": {
"firecrawl-mcp": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": {
"FIRECRAWL_API_KEY": "fc-YOUR_API_KEY"
}
}
}
}
Agent Onboarding
Are you an AI agent? Fetch this skill to sign up your user, get an API key, and start building with Firecrawl.
bash
curl -s https://firecrawl.dev/agent-onboarding/SKILL.md
See the Skill + CLI documentation for all available commands. For MCP, see firecrawl-mcp-server.
---
More Endpoints
Agent
The easiest way to get data from the web. Describe what you need, and our AI agent searches, navigates, and retrieves it. No URLs required.
Agent is the evolution of our/extract endpoint: faster, more reliable, and doesn't require you to know the URLs upfront.
bash
curl -X POST 'https://api.firecrawl.dev/v2/agent' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"prompt": "Find the pricing plans for Notion"
}'
Response:
json
{
"success": true,
"data": {
"result": "Notion offers the following pricing plans:\n\n1. Free - $0/month...\n2. Plus - $10/seat/month...\n3. Business - $18/seat/month...",
"sources": ["https://www.notion.so/pricing"]
}
}
Agent with Structured Output
Use a schema to get structured data:python
from firecrawl import Firecrawl
from pydantic import BaseModel, Field
from typing import List, Optional
app = Firecrawl(api_key="fc-YOUR_API_KEY")
class Founder(BaseModel):
name: str = Field(description="Full name of the founder")
role: Optional[str] = Field(None, description="Role or position")
class FoundersSchema(BaseModel):
founders: List[Founder] = Field(description="List of founders")
result = app.agent(
prompt="Find the founders of Firecrawl",
schema=FoundersSchema
)
print(result.data)
json
{
"founders": [
{"name": "Eric Ciarla", "role": "Co-founder"},
{"name": "Nicolas Camara", "role": "Co-founder"},
{"name": "Caleb Peffer", "role": "Co-founder"}
]
}
Agent with URLs (Optional)
Focus the agent on specific pages:python
result = app.agent(
urls=["https://docs.firecrawl.dev", "https://firecrawl.dev/pricing"],
prompt="Compare the features and pricing information"
)
Model Selection
Choose between two models based on your needs:
| Model | Cost | Best For | |-------|------|----------| |spark-1-mini (default) | 60% cheaper | Most tasks |
| spark-1-pro | Standard | Complex research, critical data gathering |
python
result = app.agent(
prompt="Compare enterprise features across Firecrawl, Apify, and ScrapingBee",
model="spark-1-pro"
)
When to use Pro:
- Comparing data across multiple websites
- Extracting from sites with complex navigation or auth
- Research tasks where the agent needs to explore multiple paths
- Critical data where accuracy is paramount
Learn more about Spark models in our Agent documentation.
Crawl
Crawl an entire website and get content from all pages.bash
curl -X POST 'https://api.firecrawl.dev/v2/crawl' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"url": "https://docs.firecrawl.dev",
"limit": 100,
"scrapeOptions": {
"formats": ["markdown"]
}
}'
Returns a job ID:
json
{
"success": true,
"id": "123-456-789",
"url": "https://api.firecrawl.dev/v2/crawl/123-456-789"
}
Check Crawl Status
bash
curl -X GET 'https://api.firecrawl.dev/v2/crawl/123-456-789' \
-H 'Authorization: Bearer fc-YOUR_API_KEY'
json
{
"status": "completed",
"total": 50,
"completed": 50,
"creditsUsed": 50,
"data": [
{
"markdown": "# Page Title\n\nContent...",
"metadata": {"title": "Page Title", "sourceURL": "https://..."}
}
]
}
Note: The [SDKs](#sdks) handle polling automatically for a better developer experience.
Map
Discover all URLs on a website instantly.bash
curl -X POST 'https://api.firecrawl.dev/v2/map' \
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"url": "https://firecrawl.dev"}'
Response:
json
{
"success": true,
"links": [
{"url": "https://firecrawl.dev", "title": "Firecrawl", "description": "Turn websites into LLM-ready data"},
{"url": "https://firecrawl.dev/pricing", "title": "Pricing", "description": "Firecrawl pricing plans"},
{"url": "https://firecrawl.dev/blog", "title": "Blog", "description": "Firecrawl blog"}
]
}
Map with Search
Find specific URLs within a site:python
from firecrawl import Firecrawl
app = Firecrawl(api_key="fc-YOUR_API_KEY")
result = app.map("https://firecrawl.dev", search="pricing")
# Returns URLs ordered by relevance to "pricing"
Batch Scrape
Scrape multiple URLs at once:python
from firecrawl import Firecrawl
app = Firecrawl(api_key="fc-YOUR_API_KEY")
job = app.batch_scrape([
"https://firecrawl.dev",
"https://docs.firecrawl.dev",
"https://firecrawl.dev/pricing"
], formats=["markdown"])
for doc in job.data:
print(doc.metadata.source_url)
---
SDKs
Our SDKs provide a convenient way to use all Firecrawl features and automatically handle polling for async operations.
Python
Install the SDK:bash
pip install firecrawl-py
python
from firecrawl import Firecrawl
app = Firecrawl(api_key="fc-YOUR_API_KEY")
# Scrape a single URL
doc = app.scrape("https://firecrawl.dev", formats=["markdown"])
print(doc.markdown)
# Use the Agent for autonomous data gathering
result = app.agent(prompt="Find the founders of Stripe")
print(result.data)
# Crawl a website (automatically waits for completion)
docs = app.crawl("https://docs.firecrawl.dev", limit=50)
for doc in docs.data:
print(doc.metadata.source_url, doc.markdown[:100])
# Search the web
results = app.search("best AI data tools 2024", limit=10)
print(results)
Node.js
Install the SDK:bash
npm install firecrawl
javascript
import { Firecrawl } from 'firecrawl';
const app = new Firecrawl({ apiKey: 'fc-YOUR_API_KEY' });
// Scrape a single URL
const doc = await app.scrape('https://firecrawl.dev', { formats: ['markdown'] });
console.log(doc.markdown);
// Use the Agent for autonomous data gathering
const result = await app.agent({ prompt: 'Find the founders of Stripe' });
console.log(result.data);
// Crawl a website (automatically waits for completion)
const docs = await app.crawl('https://docs.firecrawl.dev', { limit: 50 });
docs.data.forEach(doc => {
console.log(doc.metadata.sourceURL, doc.markdown.substring(0, 100));
});
// Search the web
const results = await app.search('best AI data tools 2024', { limit: 10 });
results.data.web.forEach(result => {
console.log(`${result.title}: ${result.url}`);
});
Go
Install the SDK:bash
go get github.com/firecrawl/firecrawl/apps/go-sdk
```go
package main
import (
"context"
"fmt"
"log"
firecrawl "github.com/firecrawl/firecrawl/apps/go-sdk"
"github.com/firecrawl/firecrawl/apps/go-sdk/option"
)
func main() {
// Create a client (reads FIRECRAWL_API_KEY from environment)
client, err := firecrawl.NewClient(option.WithAPIKey("fc-YOUR_API_KEY"))
if err != nil {
log.Fatal(err)
}
ctx := context.Background()
// Scrape a single URL
doc, err := client.Scrape(ctx, "https://firecrawl.dev", &firecrawl.ScrapeOptions{
Formats: []string{"markdown"},
})
if err != nil {
log.Fatal(err)
}
fmt.Println(doc.Markdown)
// Use the Agent for autonomous data gathering
agent, err := client.Agent(ctx, &firecrawl.AgentOptions{
Prompt: "Find the founders of Stripe",
})
if err != nil {
log.Fatal(err)
}
fmt.Println(agent.Data)
// Crawl a website (automatically waits for completion)
job, err := client.Crawl(ctx, "https://docs.firecrawl.dev", &firecrawl.CrawlOpti
…
-
firecrawl
The API to search, scrape, and interact with the web at scale. 🔥
TypeScript ★ 152k 5h agoExplain → -
open-lovable
🔥 Clone and recreate any website as a modern React app in seconds
TypeScript ★ 28k 7mo agoExplain → -
firecrawl-mcp-server
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
JavaScript ★ 7.0k 2h agoExplain → -
open-agent-builder
🔥 Visual workflow builder for AI agents powered by Firecrawl - drag-and-drop web scraping pipelines with real-time execution
TypeScript ★ 2.5k 8mo agoExplain → -
fireplexity
🔥 Open Source Perplexity like AI search engine with real-time citations, streaming responses, and live data powered by Firecrawl
TypeScript ★ 1.9k 10mo agoExplain → -
pdf-inspector
Fast Rust library for PDF inspection, classification, and text extraction. Intelligently detects scanned vs text-based PDFs to enable smart routing decisions.
Rust ★ 1.6k 15m agoExplain → -
open-scouts
🔥 AI-powered web monitoring platform. Create automated scouts that search the web and send email alerts when they find what you're looking for.
TypeScript ★ 1.3k 1mo agoExplain → -
fire-enrich
🔥 AI-powered data enrichment tool that transforms emails into rich datasets with company profiles, funding data, tech stacks, and more using Firecrawl and multi-agent AI
TypeScript ★ 1.2k 9mo agoExplain → -
web-agent
🔥 Open-source web data agent optimized for structured web research
TypeScript ★ 1.1k 2mo agoExplain → -
firecrawl-app-examples
🔥 This repository contains complete application examples, including websites and other projects, developed using Firecrawl.
Jupyter Notebook ★ 781 6mo agoExplain → -
open-researcher
🔥 Visual AI research assistant that displays real-time thinking, provides split-view analysis, and automatic citations using Claude and Firecrawl
TypeScript ★ 676 1y agoExplain → -
firegeo
🔥 GEO-powered SaaS starter built with Firecrawl for brand monitoring, auth, and billing
TypeScript ★ 637 1y agoExplain → -
firestarter
🔥 Instantly create AI chatbots for any website with RAG-powered search, streaming responses, and OpenAI-compatible API endpoints
TypeScript ★ 572 1y agoExplain → -
firecrawl-observer
🔥 Monitor websites for changes with Firecrawl's powerful change detection - see what and when websites have changed
TypeScript ★ 543 11mo agoExplain → -
llmstxt-generator
🔥 Generate llms.txt and llms-full.txt files for any website!
TypeScript ★ 532 1y agoExplain → -
cli
CLI and Agent Skill for Firecrawl - Add scrape, search, and browsing capabilities to your AI agents
TypeScript ★ 524 8h agoExplain → -
firesearch
🔥 AI-powered deep research tool that breaks down complex queries, validates answers, and provides cited comprehensive results using Firecrawl and LangGraph
TypeScript ★ 493 1y agoExplain → -
create-llmstxt-py
No description.
Python ★ 316 1y agoExplain → -
ai-ready-website
🔥 A tool to analyze your website's AI-readiness, powered by Firecrawl
TypeScript ★ 303 10mo agoExplain → -
mendable-nextjs-chatbot
Next.js Starter Template for building chatbots with Mendable
TypeScript ★ 275 2y agoExplain → -
rag-arena
Open-source RAG evaluation through users' feedback
TypeScript ★ 220 2y agoExplain → -
firecrawl-claude-plugin
Firecrawl plugin for Claude Code - web scraping and crawling
★ 166 16d agoExplain → -
firegraph
🔥📈 Create beautiful graphs in seconds. Plot github stars or your own csvs. Think ray.so for graphs. Built by the Firecrawl team.
TypeScript ★ 141 2y agoExplain → -
data-connectors
LLM-ready data connectors
TypeScript ★ 118 2y agoExplain → -
firecrawl-py
Crawl and convert any website into clean markdown
Python ★ 102 2y agoExplain → -
QA_clustering
Analyzing chat interactions w/ LLMs to improve 🦜🔗 Langchain docs
Jupyter Notebook ★ 93 3y agoExplain → -
firecrawl-workflows
No description.
★ 87 27d agoExplain → -
opencode-firecrawl
No description.
TypeScript ★ 84 5mo agoExplain → -
firecrawl-docs
Documentation for Firecrawl.
MDX ★ 74 7h agoExplain → -
gemini-trendfinder
No description.
TypeScript ★ 70 1y agoExplain → -
firecrawl-migrator
No description.
TypeScript ★ 53 11mo agoExplain → -
grok-4-fire-enrich
No description.
TypeScript ★ 51 1y agoExplain → -
n8n-nodes-firecrawl
n8n node to interact with Firecrawl
TypeScript ★ 49 2mo agoExplain → -
gen-ui-firecrawl ⑂
No description.
TypeScript ★ 49 2y agoExplain → -
skills
No description.
★ 46 2d agoExplain → -
npx-generate-llmstxt
Generate LLMs.txt files from any website using the CLI + Firecrawl
JavaScript ★ 42 1y agoExplain → -
mendable-py
Build Production Ready LLM Chat Apps in Minutes
Python ★ 39 2y agoExplain → -
claude37TrendFinder
No description.
TypeScript ★ 38 1y agoExplain → -
claude-skill-generator
No description.
TypeScript ★ 34 5mo agoExplain → -
html-to-markdown ⑂
⚙️ Convert HTML to Markdown. Even works with entire websites and can be extended through rules.
Go ★ 30 4mo agoExplain → -
last30flames
Agent skill that researches what's actually new about any topic in a recent time window - keyless, harness-agnostic.
TypeScript ★ 27 6d agoExplain → -
firecrawl-go
No description.
Go ★ 26 3mo agoExplain → -
openai-structured-outputs-with-firecrawl
This repository demonstrates how to leverage OpenAI's GPT-4 models with JSON Strict Mode to extract structured data from web pages. It combines web scraping capabilities from Firecrawl with OpenAI's advanced language models to create a powerful data extraction pipeline.
Python ★ 20 1y agoExplain → -
OpenManus ⑂
No fortress, purely open ground. OpenManus is Coming.
Python ★ 18 1y agoExplain → -
ai-slack-bot
No description.
JavaScript ★ 18 2y agoExplain → -
auto-draft
No description.
Python ★ 18 2y agoExplain → -
firecrawl-java-sdk
No description.
Java ★ 17 4mo agoExplain → -
mineru-api
No description.
Python ★ 17 4mo agoExplain → -
firecrawl-discord-bot
A Discord bot to turn websites into LLM-ready data using the Firecrawl API
TypeScript ★ 16 1y agoExplain → -
firecrawl-theme
No description.
Lua ★ 15 21d agoExplain → -
Open-WebUI-Pipelines
Open-WebUI-Pipelines is a collection of custom pipelines for Firecrawl API, designed to enhance Open WebUI.
Python ★ 14 1y agoExplain → -
ai-discord-bot
Easily build and deploy your AI Discord Bot with Mendable
JavaScript ★ 14 2y agoExplain → -
AI-research-SKILLs ⑂
Comprehensive open-source library of AI research and engineering skills for any AI model. Package the skills and your claude code/codex/gemini agent will be an AI research agent with full horsepower. Maintained by Orchestra Research.
★ 13 5mo agoExplain → -
lopdf ⑂
A Rust library for PDF document manipulation.
Rust ★ 11 3mo agoExplain → -
gemini-aginews
No description.
TypeScript ★ 11 1y agoExplain → -
pi-firecrawl
No description.
TypeScript ★ 10 1mo agoExplain → -
html-extractor
Fast HTML main-content extractor in Rust with Node bindings. Page-type-aware, outputs clean markdown.
Rust ★ 9 1mo agoExplain → -
claude37aginews
No description.
TypeScript ★ 9 1y agoExplain → -
firecrawl-coupon-finder
A Chrome extension built with Claude Opus 4.6 Agent Teams and Firecrawl Agents to automatically find and validate coupons.
TypeScript ★ 8 5mo agoExplain → -
firecrawl-ai-chatbot
No description.
TypeScript ★ 8 1y agoExplain → -
awesome-agent-skills ⑂
Claude Code Skills and 300+ agent skills from official dev teams and the community, compatible with Codex, Antigravity, Gemini CLI, Cursor and others.
★ 7 5mo agoExplain → -
firecrawl-grok-plugin
No description.
★ 7 1mo agoExplain → -
firecrawl-cursor-plugin
No description.
★ 7 16d agoExplain → -
fastmcp ⑂
A TypeScript framework for building MCP servers.
TypeScript ★ 7 27d agoExplain → -
openclaude ⑂
Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models via OpenAI-compatible API shim
★ 6 3mo agoExplain → -
mendable-cli
No description.
JavaScript ★ 6 3y agoExplain → -
agent-browser-plugin-firecrawl
Firecrawl plugin for agent-browser: cloud browser provider (CDP) + scrape/search/crawl/map commands
JavaScript ★ 5 1mo agoExplain → -
firecrawl-obsidian
No description.
TypeScript ★ 5 17d agoExplain → -
firecrawl_base_nextjs
No description.
TypeScript ★ 5 1y agoExplain → -
firecrawl-codex-plugin
No description.
Shell ★ 4 1mo agoExplain → -
openwork ⑂
An open-source alternative to Claude Cowork, powered by opencode
★ 4 5mo agoExplain → -
firecrawl-example-app-template
No description.
TypeScript ★ 4 1y agoExplain → -
agent-skills ⑂
Expert-level WordPress knowledge for AI coding assistants - blocks, themes, plugins, and best practices
★ 3 5mo agoExplain → -
firecrawl-nextjs-template
Firecrawl nextjs template
TypeScript ★ 3 1mo agoExplain → -
simd-html-to-md
experiment: SIMD-powered HTML to Markdown converter
Rust ★ 3 3mo agoExplain → -
openclaw ⑂
Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞
★ 3 3mo agoExplain → -
mhtml2html ⑂
Converts MHTML files to a single HTML file using javascript
JavaScript ★ 3 1y agoExplain → -
jobMatcher
No description.
★ 3 1y agoExplain → -
hive ⑂
Outcome driven agent development framework that evolves
★ 2 5mo agoExplain → -
langchain-firecrawl
No description.
Python ★ 2 1mo agoExplain → -
worldguessr ⑂
Free & Open source version of Geoguessr
★ 2 2mo agoExplain → -
claude-plugins-official ⑂
Anthropic-managed directory of high quality Claude Code Plugins.
Shell ★ 2 5mo agoExplain → -
brand-extender
No description.
TypeScript ★ 2 8mo agoExplain → -
firecrawl-next-supa-in-1
No description.
TypeScript ★ 2 1y agoExplain → -
firecrawl-go-examples
No description.
Go ★ 2 1y agoExplain → -
nextra-test
No description.
MDX ★ 2 2y agoExplain → -
docusaurus-theme-mendable
No description.
CSS ★ 2 2y agoExplain → -
cli-1 ⑂
Entire is a new developer platform that hooks into your git workflow to capture AI agent sessions on every push, unifying your code with its context and reasoning.
★ 1 5mo agoExplain → -
firecrawl-php
No description.
PHP ★ 1 15h agoExplain → -
calamine ⑂
A pure Rust Excel/OpenDocument SpreadSheets file reader: rust on metal sheets
★ 1 2mo agoExplain → -
openai-skills ⑂
Skills Catalog for Codex
★ 1 5mo agoExplain → -
mcp-typescript-sdk ⑂
The official Typescript SDK for Model Context Protocol servers and clients
★ 1 1y agoExplain → -
firecrawl-vercel-integration
No description.
TypeScript ★ 1 1y agoExplain → -
nodesig
HTML node signaturing library
Rust ★ 1 1y agoExplain → -
firecrawl-openclaw
No description.
★ 0 6h agoExplain → -
.github
No description.
★ 0 2mo agoExplain → -
opendataloader-bench ⑂
OpenDataLoader Benchmark
★ 0 4mo agoExplain → -
ai-customer-support-bot
No description.
★ 0 3y agoExplain → -
haystack-integrations ⑂
🚀 A list of Haystack Integrations, maintained by the community or deepset.
★ 0 5mo agoExplain → -
refly-skills ⑂
Refly skills repository
★ 0 5mo agoExplain → -
pi-skills ⑂
Skills for pi coding agent (compatible with Claude Code and Codex CLI)
★ 0 5mo agoExplain → -
trendCron
No description.
TypeScript ★ 0 1y agoExplain →
No repos match these filters.