.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/firecrawl/skills
home/mcp-servers/firecrawl/skills
firecrawl avatar

skills

byfirecrawl· 3 MCP servers

Stars

52

Forks

13

Category

AI Agents & MCP

View on GitHub

TL;DR

A collection of skills for AI coding agents following the Agent Skills format. Available as a plugin for Claude Code, Cursor, and OpenAI Codex.

How to install skills?

firecrawl/skills
$git clone https://github.com/firecrawl/skills

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install skills by running `git clone https://github.com/firecrawl/skills`, then use it for the current task and follow its documentation at https://github.com/firecrawl/skills.

Files · 1

View on GitHub
README.md
1# Firecrawl Skills
2 
3A collection of skills for AI coding agents following the [Agent Skills](https://agentskills.io) format. Available as a plugin for Claude Code, Cursor, and OpenAI Codex.
4 
5This repo is the app-integration counterpart to [`firecrawl/cli`](https://github.com/firecrawl/cli).
6 
7- Use this repo when an agent is building a product that calls Firecrawl APIs.
8- Use `firecrawl/cli` when an agent needs better web access during its own work: search the web, scrape pages, crawl docs, or interact with live sites from the terminal.
9 
10## Install
11 
12One command installs both the CLI skills and these build skills:
13 
14```bash
15npx -y firecrawl-cli@latest init --all --browser
16```
17 
18Or install just this repo's skills directly:
19 
20```bash
21npx skills add firecrawl/skills
22```
23 
24## Available Skills
25 
26| Skill | Description | Source |
27| ------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------- |
28| [`firecrawl-build`](./skills/firecrawl-build) | Firecrawl application API umbrella skill | Authored here |
29| [`firecrawl-build-onboarding`](./skills/firecrawl-build-onboarding) | Get `FIRECRAWL_API_KEY` into a project and choose the right SDK/docs | Authored here |
30| [`firecrawl-build-scrape`](./skills/firecrawl-build-scrape) | Integrate `/scrape` for single-page extraction | Authored here |
31| [`firecrawl-build-search`](./skills/firecrawl-build-search) | Integrate `/search` for discovery-first workflows | Authored here |
32| [`firecrawl-build-interact`](./skills/firecrawl-build-interact) | Integrate `/interact` for clicks, forms, and dynamic flows after scrape | Authored here |
33 
34## MCP Server
35 
36The plugin includes Firecrawl MCP configuration for the official [Firecrawl MCP server](https://github.com/firecrawl/firecrawl-mcp-server), so editors that support bundled MCP metadata can wire Firecrawl tools with `FIRECRAWL_API_KEY`.
37 
38## Plugins
39 
40This repo serves as a plugin for multiple platforms:
41 
42- **Claude Code** - `.claude-plugin/`
43- **Cursor** - `.cursor-plugin/`
44- **OpenAI Codex** - `.codex-plugin/`
45 
46## Editing Skills
47 
48All current skills in this repo are authored here and can be edited directly in this repo.
49 
50If Firecrawl later syncs skills from other repos, that distinction should be documented here and in `AGENTS.md`.
51 
52## Prerequisites
53 
54- A Firecrawl account or self-hosted Firecrawl deployment
55- API key stored in `FIRECRAWL_API_KEY` for cloud usage
56 
57Get your API key at [firecrawl.dev/app](https://www.firecrawl.dev/app).
58 
59If you do not already have an API key, use [`firecrawl-build-onboarding`](./skills/firecrawl-build-onboarding) in this repo. It includes the browser authorization flow directly and does not require the website onboarding skill.
60 
61## Relationship To The CLI Repo
62 
63Both repos are installed by the same command:
64 
65```bash
66npx -y firecrawl-cli@latest init --all --browser
67```
68 
69This installs the Firecrawl CLI, the CLI skills (for live web work), and these build skills (for app integration) together. The difference is what you use after install:
70 
71- **CLI skills** (`firecrawl/cli`) — for searching the web, scraping pages, interacting with live sites during the current session
72- **Build skills** (this repo) — for integrating Firecrawl into application code
73 
74The build skills here focus on:
75 
76- getting an API key into `.env`
77- choosing fresh project vs existing project flow
78- choosing the right endpoint
79- asking what Firecrawl should do in the product
80- wiring SDKs or REST calls into code
81- inspecting an existing repo before integrating
82- running a smoke test so the integration is proven, not just written
83- avoiding CLI-only guidance when the real task is product integration
84 
85Default build flow:
86 
871. decide whether the project is fresh or existing
882. ask what Firecrawl should do in the product
893. route to `/scrape`, `/search`, or `/interact`
904. integrate using the project's existing conventions
915. verify one real Firecrawl request succeeds
92 
93## Source Of Truth
94 
95This repo follows the same two usage paths described in Firecrawl's onboarding skill (same install, different use cases):
96 
97- Path A: live web tools during the current session (CLI skills)
98- Path B: integrate Firecrawl into application code (build skills)
99 
100The onboarding source lives at:
101 
102- [`firecrawl-web/public/agent-onboarding/SKILL.md`](https://www.firecrawl.dev/agent-onboarding/SKILL.md)
103 
104## Docs (Source of Truth)
105 
106Read the source-of-truth page for your project language:
107 
108- **Node / TypeScript**: [docs.firecrawl.dev/agent-source-of-truth/node](https://docs.firecrawl.dev/agent-source-of-truth/node)
109- **Python**: [docs.firecrawl.dev/agent-source-of-truth/python](https://docs.firecrawl.dev/agent-source-of-truth/python)
110- **Rust**: [

Preview

firecrawl/skillsfirecrawl/skills
Repofirecrawl/skills
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseISC
First seenJul 26, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k