Serverscom.pulsemcp.servers/pulse-fetch
F

com.pulsemcp.servers/pulse-fetch

com.pulsemcp.servers/pulse-fetch · v0.2.14
▦ npm
v0.2.14npm npm: @pulsemcp/pulse-fetch↗ Repository
{}server.json

The full server descriptor as registered with IndusMCP.

{
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
  "name": "com.pulsemcp.servers/pulse-fetch",
  "description": "MCP server that extracts clean, structured content from web pages with anti-bot bypass capabilities.",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "productionized/pulse-fetch"
  },
  "version": "0.2.14",
  "packages": [
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "@pulsemcp/pulse-fetch",
      "version": "0.2.14",
      "runtimeHint": "npx",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "API key for Firecrawl service to bypass anti-bot measures",
          "isSecret": true,
          "name": "FIRECRAWL_API_KEY"
        },
        {
          "description": "Bearer token for BrightData Web Unlocker service",
          "isSecret": true,
          "name": "BRIGHTDATA_API_KEY"
        },
        {
          "description": "Path to markdown file containing scraping strategy configuration",
          "default": "/tmp/pulse-fetch/strategy.md",
          "name": "STRATEGY_CONFIG_PATH"
        },
        {
          "description": "Optimization strategy for scraping: cost or speed",
          "default": "cost",
          "choices": [
            "cost",
            "speed"
          ],
          "name": "OPTIMIZE_FOR"
        },
        {
          "description": "Storage backend for saved resources: memory or filesystem",
          "default": "memory",
          "choices": [
            "memory",
            "filesystem"
          ],
          "name": "MCP_RESOURCE_STORAGE"
        },
        {
          "description": "Directory for filesystem storage (only used with filesystem type)",
          "default": "/tmp/pulse-fetch/resources",
          "name": "MCP_RESOURCE_FILESYSTEM_ROOT"
        },
        {
          "description": "Skip API authentication health checks at startup",
          "format": "boolean",
          "default": "false",
          "name": "SKIP_HEALTH_CHECKS"
        },
        {
          "description": "LLM provider for extract feature: anthropic, openai, openai-compatible",
          "choices": [
            "anthropic",
            "openai",
            "openai-compatible"
          ],
          "name": "LLM_PROVIDER"
        },
        {
          "description": "API key for the chosen LLM provider",
          "isSecret": true,
          "name": "LLM_API_KEY"
        },
        {
          "description": "Base URL for OpenAI-compatible providers",
          "name": "LLM_API_BASE_URL"
        },
        {
          "description": "Specific model to use for extraction",
          "name": "LLM_MODEL"
        }
      ]
    }
  ],
  "_meta": {
    "dev.indusmcp/source": "official-registry-mirror",
    "dev.indusmcp/synced": "2026-05-12"
  }
}