Xxiii8322766509 / search
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/search && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3570" && unzip -o skill.zip -d .claude/skills/search && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/search/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Search via Firecrawl MCP using mcporter.
0 views
0 installs
Skill Content
---
name: search
description: Search via Firecrawl MCP using mcporter.
allowed-tools: Bash(npx:*)
---
# Search (Firecrawl MCP)
This skill routes search requests through the Firecrawl MCP server using mcporter.
## Configure mcporter
The installer writes a mcporter config file at:
- `~/.mcporter/config.json`
Make sure the file contains a `firecrawl-mcp` entry with a valid API key:
```json
{
"mcpServers": {
"firecrawl-mcp": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": {
"FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
}
}
}
}
```
## List tools
```bash
npx -y mcporter@latest list --config ~/.mcporter/config.json firecrawl-mcp
```
## Example call
```bash
npx -y mcporter@latest call --config ~/.mcporter/config.json firecrawl-mcp.search query="YOUR_QUERY"
```