Skip to main content

An MCP server exposing tools to access Vietnam stock market data built on top of vnstock and mcp

Project description

VNStock MCP Server (Unofficial)

Test Status PyPI version PyPI downloads Python versions License: MIT

An unofficial MCP (Model Context Protocol) server that provides tools to access Vietnam stock market data. This is a wrapper around the excellent vnstock library by @thinh-vu.

Note: This is an independent project and is not officially affiliated with the vnstock library or its maintainers.

About vnstock

This MCP server is built on top of the vnstock library - a powerful Python toolkit for Vietnamese stock market analysis created by Thinh Vu. vnstock provides comprehensive access to Vietnam stock market data including:

  • Real-time and historical stock prices
  • Company financial statements
  • Market data and trading statistics
  • Mutual fund information
  • Gold prices and exchange rates

For more information about the underlying library, visit: https://github.com/thinh-vu/vnstock

Features

This MCP server exposes vnstock's capabilities through MCP tools, allowing AI assistants and other MCP clients to:

  • Access company information and financial data
  • Retrieve stock quotes and historical prices
  • Get trading statistics and market data
  • Query mutual fund information
  • Access gold prices and exchange rates
  • Retrieve financial statements (income, balance sheet, cash flow)

Installation

Install from PyPI (Recommended)

pip install vnstock-mcp-server

Install from source

git clone https://github.com/maobui/vnstock-mcp-server.git
cd vnstock-mcp-server
uv sync

Prerequisites

  • Python 3.12+
  • uv (install with pip install uv or see https://docs.astral.sh/uv/)

Quick Start

Run the MCP server

Default mode (stdio)

# If installed from PyPI
vnstock-mcp-server

# If installed from source with uv
uv run python -m vnstock_mcp.server

With transport options

# Use stdio transport (default)
vnstock-mcp-server --transport stdio

# Use Server-Sent Events (SSE) transport for web applications
vnstock-mcp-server --transport sse

# Use SSE with custom endpoint path
vnstock-mcp-server --transport sse --path /mcp

# Use HTTP streaming transport
vnstock-mcp-server --transport streamable-http

# Show help with all available options
vnstock-mcp-server --help

The server uses FastMCP and supports multiple transport protocols:

  • stdio: Standard input/output (default, for MCP clients like Claude Desktop)
  • sse: Server-Sent Events (for web applications)
  • streamable-http: HTTP streaming (for HTTP-based integrations)

Transport Modes

The VNStock MCP Server supports three different transport protocols to accommodate various use cases:

stdio (Default)

  • Use case: Standard MCP clients like Claude Desktop, Cursor, Cline
  • Protocol: Communication via standard input/output streams
  • Usage: vnstock-mcp-server or vnstock-mcp-server --transport stdio
  • Best for: Desktop applications and traditional MCP integrations

SSE (Server-Sent Events)

  • Use case: Web applications that need real-time data streaming
  • Protocol: HTTP-based server-sent events
  • Usage: vnstock-mcp-server --transport sse [--path /mcp] [--host 0.0.0.0] [--port 8000]
  • Server runs on: http://127.0.0.1:8000 (default)
  • Best for: Web dashboards, browser-based applications

streamable-http

  • Use case: HTTP-based integrations and API services
  • Protocol: HTTP streaming with JSON-RPC over HTTP
  • Usage: vnstock-mcp-server --transport streamable-http [--path /mcp] [--host 0.0.0.0] [--port 8000]
  • Server runs on: http://127.0.0.1:8000 (default)
  • Best for: REST API integrations, microservices architecture

Command Line Options

vnstock-mcp-server [OPTIONS]

Options:
  -t, --transport {stdio,sse,streamable-http}
                        Transport protocol to use (default: stdio)
  --path PATH           Endpoint path for HTTP transports (optional, e.g. /mcp)
  --host HOST           Host address to bind to (default: 0.0.0.0)
  -p, --port PORT       Port to run the server on (default: 8000)
  -v, --version         Show version information
  -h, --help            Show help message

MCP client integration

Cursor / Cline example

Add a server entry in your MCP configuration:

Default stdio transport

{
  "mcpServers": {
    "vnstock": {
      "command": "uvx",
      "args": [
        "vnstock-mcp-server"
      ]
    }
  }
}

With specific transport options

{
  "mcpServers": {
    "vnstock-sse": {
      "command": "uvx",
      "args": [
        "vnstock-mcp-server",
        "--transport",
        "sse",
        "--path",
        "/mcp",
        "--port",
        "8000"
      ]
    },
    "vnstock-http": {
      "command": "uvx",
      "args": [
        "vnstock-mcp-server",
        "--transport",
        "streamable-http"
      ]
    }
  }
}

If installed from source:

{
  "mcpServers": {
    "vnstock": {
      "command": "uv",
      "args": ["run", "python", "-m", "vnstock_mcp.server"],
      "env": {}
    },
    "vnstock-sse": {
      "command": "uv",
      "args": ["run", "python", "-m", "vnstock_mcp.server", "--transport", "sse"],
      "env": {}
    }
  }
}

Claude Desktop example

In MCP server settings:

  • Command: vnstock-mcp-server
  • Args: (leave empty for stdio, or add transport options like --transport sse)

Available Tools

The MCP server provides the following categories of tools:

Company Information

  • Company overview, news, events
  • Shareholders and officers information
  • Subsidiaries and insider deals
  • Trading statistics and ratios

Financial Data

  • Income statements, balance sheets, cash flows
  • Financial ratios and raw reports
  • Historical financial data (quarterly/yearly)

Market Data

  • Real-time quotes and historical prices
  • Intraday trading data and price depth
  • Market price boards for multiple symbols

Fund Information

  • Fund listings and search
  • NAV reports and holdings
  • Industry and asset allocation

Miscellaneous

  • Gold prices (SJC, BTMC)
  • Exchange rates
  • Symbol listings by industry/group

Development

Install with uv (for development)

# From the project root
uv sync

# Include dev dependencies (for tests and coverage)
uv sync --group dev

Testing with uv

# Run all tests
uv run pytest

# Run a specific test file
uv run pytest test/test_company_tools.py

# Run with coverage (HTML)
uv run pytest --cov=src/vnstock_mcp --cov-report=html
# Open report:
#   ./htmlcov/index.html

Building and Publishing

Build locally

# Using the build script
./scripts/build.sh

# Or manually
python -m build

Create a release

# Update version in pyproject.toml first, then:
./scripts/release.sh

This will:

  1. Run tests
  2. Create and push a git tag
  3. Trigger GitHub Actions to build and publish to PyPI

Credits

This project is a wrapper around the vnstock library created by @thinh-vu. All stock market data access functionality is provided by vnstock.

Please consider:

Disclaimer

This is an unofficial wrapper and is not affiliated with the vnstock library or its maintainers. For issues related to the underlying stock market data or vnstock functionality, please refer to the vnstock repository.

Troubleshooting

Installation Issues

  • Module not found with uv run:
    • Ensure uv sync completed successfully in the project root.
    • Verify Python version: python --version and uv python list.
  • Command vnstock-mcp-server not found:
    • Ensure the package is installed: pip list | grep vnstock-mcp-server
    • Try reinstalling: pip install --upgrade vnstock-mcp-server

Connection Issues

  • MCP client cannot connect (stdio mode):
    • Confirm the client configuration matches the installation method
    • Check client logs for detailed errors.
    • Ensure no extra arguments are passed for stdio transport
  • Cannot access SSE/HTTP endpoints:
    • Verify the server is running: check for "Uvicorn running on http://127.0.0.1:8000"
    • Check if port 8000 is available: netstat -an | grep 8000
    • Try accessing http://127.0.0.1:8000 in browser for SSE mode

Transport Mode Issues

  • SSE transport not working:
    • Ensure path is correctly specified if needed
    • Check server logs for startup errors
    • Verify web client can connect to the SSE endpoint
  • Wrong transport mode selected:
    • Use --help to see available transport options
    • stdio: for desktop MCP clients (Claude Desktop, Cursor)
    • sse: for web applications
    • streamable-http: for HTTP API integrations

Getting Help

  • Check server version: vnstock-mcp-server --version
  • View all options: vnstock-mcp-server --help
  • Test server startup: Run with --transport stdio first to verify basic functionality

License

MIT License - see LICENSE file for details.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Run tests: uv run pytest
  6. Submit a pull request

Changelog

v1.0.3 (Latest)

  • NEW: Added Technical Analysis (TA) Momentum Indicators support via pandas-ta library
  • NEW: 40+ momentum indicators including RSI, MACD, Stochastic, CCI, Williams %R, ADX, and more
  • NEW: add_indicator() function for dynamic indicator addition with string parsing
  • NEW: get_available_indicators() and get_indicator_info() for indicator discovery
  • NEW: Support for custom indicator parameters via string or kwargs
  • IMPROVED: Enhanced quote tools with integrated TA momentum analysis

v1.0.2

  • NEW: Added TOON (python-toon) support for enhanced functionality
  • IMPROVED: Separated MCP tools into individual files for better code organization
  • FIXED: SSE transport connection issues

v1.0.1

  • NEW: Added support for multiple transport modes (stdio, sse, streamable-http)
  • NEW: Command line arguments for transport selection (--transport, --path, --host, --port)
  • NEW: SSE (Server-Sent Events) transport for web applications
  • NEW: HTTP streaming transport for API integrations
  • IMPROVED: Enhanced CLI with help messages and validation
  • IMPROVED: Better error handling and user feedback
  • IMPROVED: Comprehensive documentation for all transport modes

v1.0.0

  • Initial release
  • Full Vietnam stock market data access via MCP
  • Support for company data, financial statements, quotes, and more
  • Wrapper around vnstock v3.2.6+

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vnstock_mcp_server-1.0.3.tar.gz (46.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vnstock_mcp_server-1.0.3-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file vnstock_mcp_server-1.0.3.tar.gz.

File metadata

  • Download URL: vnstock_mcp_server-1.0.3.tar.gz
  • Upload date:
  • Size: 46.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for vnstock_mcp_server-1.0.3.tar.gz
Algorithm Hash digest
SHA256 0503fd5473f5119774df90f4c6e70553ccfc1ca6c69e91c27526960961f29e8b
MD5 383d673060e39e26655c2f929c5d70d2
BLAKE2b-256 c4f0bf4f73e04755bcc369091e7b4f9d198322b3cb7f0ca92941f7efc9133cd7

See more details on using hashes here.

File details

Details for the file vnstock_mcp_server-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for vnstock_mcp_server-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 a3ee78f2db311a233cdd7d8bb3325abecab256adb63b2100f03e9b6ea673279d
MD5 bfff32fd2f5facb1d588220e9ae52fd1
BLAKE2b-256 c8cbb90e8783e1e841a98e62191201c32a2f53140b672ca0368a8685c960abbf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page