hoqqun/stooq-mcp
🦀 Rust MCP server for stock prices from stooq.com | 株価取得MCPサーバー
Platform-specific configuration:
{
"mcpServers": {
"stooq-mcp": {
"command": "npx",
"args": [
"-y",
"stooq-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server written in Rust that fetches stock price data from stooq.com.
https://github.com/user-attachments/assets/63b55175-80c3-42aa-a28a-bdb21c66169e
| Market Code | Country | |-------------|---------| | jp | Japan | | us | United States | | uk | United Kingdom | | hk | Hong Kong | | de | Germany |
curl -fsSL https://raw.githubusercontent.com/hoqqun/stooq-mcp/main/install.sh | bashThis will install to ~/.stooq-mcp/. To customize:
STOOQ_MCP_DIR=/your/path curl -fsSL https://raw.githubusercontent.com/hoqqun/stooq-mcp/main/install.sh | bashgit clone https://github.com/hoqqun/stooq-mcp.git
cd stooq-mcp
./install.shThe install script will:
cargo build --releaseThe binary will be located at ./target/release/stooq-mcp.
Register the MCP server with Claude Code:
claude mcp add stooq-mcp /path/to/stooq-mcp/target/release/stooq-mcpAdd the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"stooq-mcp": {
"command": "/path/to/stooq-mcp/target/release/stooq-mcp"
}
}
}get_stock_priceFetches stock price data from stooq.com.
| Parameter | Type | Required
Loading reviews...