Streamly 控制面板

注册、登录、申请 API Token、查看用量,并通过 MCP 提交联网抓取任务。

注册 / 登录

登录后会在浏览器本地保存 session token。


    

API Token

完整 API Token 只在创建时显示一次。


    

MCP 配置

远程 MCP 地址:

{
  "mcpServers": {
    "streamly": {
      "url": "https://streamly.cn/mcp",
      "headers": {
        "Authorization": "Bearer sk_你的Token"
      }
    }
  }
}

如果 IDE 不支持远程 HTTP MCP,可先用本地代理桥接。

联网抓取任务


    

用量 / Token 计费


    

统一 Token 公式

streamly_tokens =
  direct_fetch_count * 1
+ downloaded_kib * 0.02
+ firecrawl_search_count * 20
+ firecrawl_scrape_pages * 50
+ firecrawl_crawl_pages * 50
+ firecrawl_extract_pages * 200
+ llm_input_tokens / 1000 * 10
+ llm_output_tokens / 1000 * 30
+ gpu_seconds * 5
+ embedding_chunks * 2
+ ocr_pages * 30

所有外部成本、GPU 时间、LLM token、抓取页数最终都折算为 Streamly 单一 token。