
mcp-server-shioaji
A Model Context Protocol (MCP) server that provides AI assistants with access to Shioaji trading API for the Taiwanese financial market.
README
MCP Server for Shioaji
A Model Context Protocol (MCP) server that provides AI assistants with access to Shioaji trading API for the Taiwanese financial market.
Overview
This server implements the MCP protocol to expose Shioaji API functionality as tools that can be used by AI assistants. It allows AI models to:
- Retrieve current stock prices
- Fetch historical data
- List available stocks
- And more...
Installation
Prerequisites
- Python 3.10 or higher
- uv (fast Python package manager)
Using uv
uv sync
Configuration
Before running the server, you need to configure your Shioaji API credentials. There are two ways to do this:
Environment Variables
Set the following environment variables:
export SHIOAJI_API_KEY="your_api_key"
export SHIOAJI_SECRET_KEY="your_secret_key"
Using .env File
Create a .env
file in the root directory with the following content:
SHIOAJI_API_KEY=your_api_key
SHIOAJI_SECRET_KEY=your_secret_key
Running the Server
Start the server with:
uv run mcp-server-shioaji
The server will start on http://0.0.0.0:8000
by default.
Available Tools
The server exposes the following tools via MCP:
get_stock_price
Get the current price of a stock by its symbol.
{
"tool": "get_stock_price",
"params": {
"symbols": "TW.2330,TW.2317"
}
}
Response will include price information for the requested stocks, including open, high, low, close prices, volume, and other trading data.
get_kbars
Fetch K-Bar (candlestick) data for a stock within a date range.
{
"tool": "get_kbars",
"params": {
"symbol": "TW.2330",
"start_date": "2023-12-01",
"end_date": "2023-12-15"
}
}
If start_date
is not provided, it defaults to today. If end_date
is not provided, it defaults to the same as start_date
.
scan_stocks
Scan stocks based on various ranking criteria.
{
"tool": "scan_stocks",
"params": {
"scanner_type": "VolumeRank",
"ascending": false,
"limit": 10
}
}
Supported scanner types:
VolumeRank
- Ranking by trading volumeAmountRank
- Ranking by trading amountTickCountRank
- Ranking by number of transactionsChangePercentRank
- Ranking by percentage changeChangePriceRank
- Ranking by price changeDayRangeRank
- Ranking by daily range
Default limit is 20, and results are sorted in descending order by default (set ascending
to true
for ascending order).
Development
Project Structure
mcp-server-shioaji/
├── src/
│ └── mcp_server_shioaji/
│ ├── __init__.py # Package entry point
│ └── server.py # MCP server implementation
├── pyproject.toml # Project metadata and dependencies
└── README.md # This file
Adding New Tools
To add new Shioaji functionality, modify server.py
and add new tool definitions using the @mcp.tool
decorator.
License
MIT
Acknowledgements
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.