firecrawl-mcp 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1025,6 +1025,9 @@ async function runSSELocalServer() {
|
|
|
1025
1025
|
async function runSSECloudServer() {
|
|
1026
1026
|
const transports = {};
|
|
1027
1027
|
const app = express();
|
|
1028
|
+
app.get('/health', (req, res) => {
|
|
1029
|
+
res.status(200).send('OK');
|
|
1030
|
+
});
|
|
1028
1031
|
app.get('/:apiKey/sse', async (req, res) => {
|
|
1029
1032
|
const apiKey = req.params.apiKey;
|
|
1030
1033
|
const transport = new SSEServerTransport(`/${apiKey}/messages`, res);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "firecrawl-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "MCP server for Firecrawl web scraping integration. Supports both cloud and self-hosted instances. Features include web scraping, batch processing, structured data extraction, and LLM-powered content analysis.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|