Skip to content

Commit 7ed87e4

Browse files
authored
Replace SSE with Streamable HTTP (#107)
1 parent 2e253fd commit 7ed87e4

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

mcp-server.mdx

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Firecrawl MCP Server
33
description: "Use Firecrawl's API through the Model Context Protocol"
4-
og:title: "Firecrawl MCP Server"
4+
og:title: 'Firecrawl MCP Server'
55
og:description: "Firecrawl MCP servers allow you to use Firecrawl's API through the Model Context Protocol"
6-
sidebarTitle: "MCP Server"
6+
sidebarTitle: 'MCP Server'
77
---
88

99
A Model Context Protocol (MCP) server implementation that integrates [Firecrawl](https://github.com/mendableai/firecrawl) for web scraping capabilities. Our MCP server is open-source and available on [GitHub](https://github.com/mendableai/firecrawl-mcp-server).
@@ -14,8 +14,7 @@ A Model Context Protocol (MCP) server implementation that integrates [Firecrawl]
1414
- Search and content extraction
1515
- Deep research and batch scraping
1616
- Cloud and self-hosted support
17-
- SSE support
18-
17+
- Streamable HTTP support
1918

2019
## Installation
2120

@@ -41,9 +40,16 @@ npm install -g firecrawl-mcp
4140

4241
### Running on Cursor
4342

44-
<a href="cursor://anysphere.cursor-deeplink/mcp/install?name=firecrawl&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImZpcmVjcmF3bC1tY3AiXSwiZW52Ijp7IkZJUkVDUkFXTF9BUElfS0VZIjoiWU9VUi1BUEktS0VZIn19"><img src="https://cursor.com/deeplink/mcp-install-dark.png" alt="Add Firecrawl MCP server to Cursor" style={{ maxHeight: 32 }} /></a>
43+
<a href='cursor://anysphere.cursor-deeplink/mcp/install?name=firecrawl&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImZpcmVjcmF3bC1tY3AiXSwiZW52Ijp7IkZJUkVDUkFXTF9BUElfS0VZIjoiWU9VUi1BUEktS0VZIn19'>
44+
<img
45+
src='https://cursor.com/deeplink/mcp-install-dark.png'
46+
alt='Add Firecrawl MCP server to Cursor'
47+
style={{ maxHeight: 32 }}
48+
/>
49+
</a>
4550

4651
#### Manual Installation
52+
4753
Configuring Cursor 🖥️
4854
Note: Requires Cursor version 0.45.6+
4955
For the most up-to-date configuration instructions, please refer to the official Cursor documentation on configuring MCP servers:
@@ -79,7 +85,6 @@ To configure Firecrawl MCP in Cursor **v0.45.6**
7985
- Type: "command"
8086
- Command: `env FIRECRAWL_API_KEY=your-api-key npx -y firecrawl-mcp`
8187

82-
8388
> If you are using Windows and are running into issues, try `cmd /c "set FIRECRAWL_API_KEY=your-api-key && npx -y firecrawl-mcp"`
8489
8590
Replace `your-api-key` with your Firecrawl API key. If you don't have one yet, you can create an account and get it from https://www.firecrawl.dev/app/api-keys
@@ -104,17 +109,15 @@ Add this to your `./codeium/windsurf/model_config.json`:
104109
}
105110
```
106111

112+
### Running with Streamable HTTP Mode
107113

108-
### Running with SSE Mode
109-
110-
To run the server using Server-Sent Events (SSE) locally instead of the default stdio transport:
114+
To run the server using streamable HTTP transport locally instead of the default stdio transport:
111115

112116
```bash
113-
env SSE_LOCAL=true FIRECRAWL_API_KEY=fc-YOUR_API_KEY npx -y firecrawl-mcp
117+
env HTTP_STREAMABLE_SERVER=true FIRECRAWL_API_KEY=fc-YOUR_API_KEY npx -y firecrawl-mcp
114118
```
115119

116-
Use the url: http://localhost:3000/v2/sse or https://mcp.firecrawl.dev/{FIRECRAWL_API_KEY}/v2/sse
117-
120+
Use the url: http://localhost:3000/v2/mcp or https://mcp.firecrawl.dev/{FIRECRAWL_API_KEY}/v2/mcp
118121

119122
### Installing via Smithery (Legacy)
120123

@@ -188,7 +191,10 @@ Add this to the Claude config file:
188191
{
189192
"mcpServers": {
190193
"firecrawl": {
191-
"url": "https://mcp.firecrawl.dev/{YOUR_API_KEY}/v2/sse"
194+
"url": "https://mcp.firecrawl.dev/v2/mcp",
195+
"headers": {
196+
"Authorization": "Bearer YOUR_API_KEY"
197+
}
192198
}
193199
}
194200
}
@@ -622,4 +628,3 @@ Thanks to MCP.so and Klavis AI for hosting and [@gstarwd](https://github.com/gst
622628
## License
623629

624630
MIT License - see LICENSE file for details
625-

0 commit comments

Comments
 (0)