- Home
- MCP servers
- Fugle MarketData
Fugle MarketData
- typescript
6
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"fugle-dev-fugle-marketdata-mcp-server": {
"command": "npx",
"args": [
"-y",
"https://github.com/fugle-dev/fugle-marketdata-mcp-server/releases/download/v0.0.1/fugle-marketdata-mcp-server-0.0.1.tgz"
],
"env": {
"API_KEY": "<API_KEY>"
}
}
}
}You can run Fugle MCP Server to query stock quotes and historical data by connecting an MCP client to a locally hosted or remote MCP endpoint. It enables you to fetch real-time prices and historical trends from the Fugle MarketData service through a straightforward MCP interface.
How to use
You interact with the Fugle MarketData MCP Server using an MCP client. Set your API key as an environment variable, start the MCP server, and then send queries through the client to retrieve real-time stock prices and historical data. Typical usage patterns include asking for the latest price of a ticker (for example, a widely followed stock) and requesting the historical price series for a specific date range. The server handles the data retrieval and returns structured results that you can display in dashboards, trading tools, or analysis notebooks.
How to install
Prerequisites: Node.js installed on your machine. You also need a Fugle MarketData API Key to access data.
- Install and run the MCP server via the provided MCP command configuration. 2) Provide your API key as an environment variable when starting the server so requests are authenticated.
Configuration and examples
Configure Claude Desktop to load the Fugle MarketData MCP server by adding the following MCP configuration. This deploys the server using npx to fetch the MCP package from a tarball release and sets the API key in the environment.
{
"mcpServers": {
"@fugle/marketdata-mcp-server": {
"command": "npx",
"args": [
"-y",
"https://github.com/fugle-dev/fugle-marketdata-mcp-server/releases/download/v0.0.1/fugle-marketdata-mcp-server-0.0.1.tgz"
],
"env": {
"API_KEY": "<API_KEY>"
}
}
}
}
Usage prompts
Examples you can try with your MCP client include: “Help me fetch the latest price for 2330” and “Show 2330’s price data for the last 10 days.” More practical prompts are available as you explore the features of Fugle MarketData MCP Server.
Understand more
You can explore additional capabilities such as position management and order placement related to market data workflows when you integrate with other Fugle MCP services.
Available tools
real_time_quote
Fetches the latest real-time price for a given stock ticker.
historical_data
Retrieves historical price data for a ticker over a specified date range.