mirror of
https://github.com/firecrawl/firecrawl-mcp-server.git
synced 2026-09-01 14:57:03 +08:00
d5c56d3e45
* chore: change license to MIT, and add ws dependency Closes #29 * refactor: standardize Firecrawl naming, update README and CHANGELOG, and adjust license year - Updated instances of "FireCrawl" to "Firecrawl" for consistency across documentation and code - Enhanced README with additional configuration instructions and acknowledgments - Revised CHANGELOG to reflect recent changes and optimizations - Updated license year from 2023 to 2025 Closes #30
23 lines
812 B
YAML
23 lines
812 B
YAML
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
|
|
|
|
startCommand:
|
|
type: stdio
|
|
configSchema:
|
|
# JSON Schema defining the configuration options for the MCP.
|
|
type: object
|
|
required:
|
|
- fireCrawlApiKey
|
|
properties:
|
|
fireCrawlApiKey:
|
|
type: string
|
|
description: Your Firecrawl API key. Required for cloud API usage.
|
|
fireCrawlApiUrl:
|
|
type: string
|
|
description:
|
|
Custom API endpoint for self-hosted instances. If provided, API key
|
|
becomes optional.
|
|
commandFunction:
|
|
# A function that produces the CLI command to start the MCP on stdio.
|
|
|-
|
|
(config) => ({ command: 'node', args: ['dist/index.js'], env: { FIRECRAWL_API_KEY: config.fireCrawlApiKey, FIRECRAWL_API_URL: config.fireCrawlApiUrl || '' } })
|