Navigation
Fugle MCP Server: Mission-Critical Scalability & Reliability - MCP Implementation

Fugle MCP Server: Mission-Critical Scalability & Reliability

Fugle MCP Server: Unleash unmatched performance for mission-critical apps with seamless scalability and reliability you can trust—engineered for your success.

Developer Tools
4.1(105 reviews)
157 saves
73 comments

This tool saved users approximately 8397 hours last month!

About Fugle MCP Server

What is Fugle MCP Server: Mission-Critical Scalability & Reliability?

Imagine a digital Swiss Army knife for stock traders—Fugle MCP Server is that tool. It’s like a caffeine-fueled sidekick that handles real-time stock quotes, historical data dives, and even trade executions (if you’re feeling bold). Built for reliability, it’s the tech equivalent of a superhero who never misses a heartbeat, even during market meltdowns.

How to Use Fugle MCP Server: Mission-Critical Scalability & Reliability?

Ready to tango with stock data? Two deployment paths await:

  • NPM Enthusiasts: Fire up `npx fugle-mcp-server` and watch it sprint like a cheetah (but legally).
  • Docker Devotees: Pull the image `kevinypfan/fugle-mcp-server`—it’s like shipping a pre-packed server in a bottle.

Pro tip: Don’t forget your env variables. They’re the security guards of your data—ignore them, and your trades might end up in a digital no-fly zone.

Fugle MCP Server Features

Key Features of Fugle MCP Server: Mission-Critical Scalability & Reliability?

This server’s resume is packed with perks:

  • Real-time tickers: Faster than your coffee order at Starbucks.
  • Historical data: Time travel for traders (minus the paradoxes).
  • Two-way deployment: NPM purists and Docker gurus can coexist peacefully.
  • Protocol purity: Fully MCP-certified—no compatibility hiccups.
  • Order toggle: Flip the `ENABLE_ORDER` switch only if you’ve got nerves of steel.

Use Cases of Fugle MCP Server: Mission-Critical Scalability & Reliability?

Here’s where it shines:

  • High-Frequency Trading: Because milliseconds are currency in this game.
  • Automated Investing Bots: Let your code do the heavy lifting while you sip margaritas.
  • Data Analysts: Crunch historical trends like a mathlete on a sugar rush.
  • Lazy Devs: Deploy with Docker and let the server handle the heavy lifting.

Fugle MCP Server FAQ

FAQ from Fugle MCP Server: Mission-Critical Scalability & Reliability?

  • Q: Do I need a certificate?
    A: Yep, unless you want your trades to wander off like stray cats. Keep it in `.p12` format—your server’s a picky gatekeeper.
  • Q: Can I skip the `ENABLE_ORDER` flag?
    A: Sure! Just don’t cry when your bot starts placing orders accidentally (been there, bought 500 shares of cat memes).
  • Q: How do I update?
    A: Check `npm view fugle-mcp-server version`—if it’s higher than yours, `npx` or `docker pull` like your future self depends on it (they do).
  • Q: What if I forget my env variables?
    A: The server will politely remind you with error messages—read them, or suffer the consequences of a very confused API.

Content

Fugle MCP Server

Docker Pulls Docker Image Size NPM Version NPM Downloads

富果 MCP (Model Context Protocol) 服務器,用於與富果交易系統進行互動。此服務器支持股票行情查詢和交易功能。

功能特點

  • 支持股票即時行情查詢
  • 支持歷史數據查詢
  • 支持交易功能(可選)
  • 支持 Docker 和 NPM 兩種部署方式
  • 完全兼容 MCP 協議

安裝

使用 NPM

npx fugle-mcp-server

使用 Docker

docker pull kevinypfan/fugle-mcp-server

使用方法

環境變量

服務器需要以下環境變量:

  • NOTIONAL_ID: 身分證字號
  • ACCOUNT_PASS: 帳戶密碼
  • CERT_PASS: 憑證密碼
  • CERT_PATH: 憑證位置(僅 NPM 方式需要)
  • ENABLE_ORDER: 是否開啟下單功能(可選,預設為 false)

Docker 配置

在你的 .mcp-config.json 中添加:

{
  "mcpServers": {
    "fugle-mcp-server": {
      "command": "docker",
      "args": [
        "run",
        "--platform=linux/amd64",
        "-i",
        "--rm",
        "-e",
        "NOTIONAL_ID",
        "-e",
        "ACCOUNT_PASS",
        "-e",
        "CERT_PASS",
        "-e",
        "ENABLE_ORDER",
        "--mount", "type=bind,src=</path/to/cert.p12>,dst=/app/cert.p12",
        "kevinypfan/fugle-mcp-server"
      ],
      "env": {
        "NOTIONAL_ID": "<身分證字號>",
        "ACCOUNT_PASS": "<帳戶密碼>",
        "CERT_PASS": "<憑證密碼>",
        "ENABLE_ORDER": "<開啟下單功能 ex: true or false>"
      }
    }
  }
}

NPM 配置

在你的 .mcp-config.json 中添加:

{
  "mcpServers": {
    "fugle-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "fugle-mcp-server"
      ],
      "env": {
        "NOTIONAL_ID": "<身分證字號>",
        "ACCOUNT_PASS": "<帳戶密碼>",
        "CERT_PASS": "<憑證密碼>",
        "CERT_PATH": "<憑證位置>",
        "ENABLE_ORDER": "<開啟下單功能 ex: true or false>"
      }
    }
  }
}

命令行選項

  • -v, --version: 顯示版本號

版本

當前版本:0.0.5

貢獻

歡迎提交 Issue 和 Pull Request。

授權

MIT License

Related MCP Servers & Clients