Vietnam stock MCP: TA signals, Z/F/M scores, foreign flow, whale detection. 2000+ VN stocks.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-cuthongthai-vn-vimo-stock-intelligence": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Vietnam stock MCP: TA signals, Z/F/M scores, foreign flow, whale detection. 2000+ VN stocks.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Make HTTP requests and fetch web content
Read, write, and manage files on the local filesystem
MCP Security Weekly
Get CVE alerts and security updates for io.github.cuthongthai-vn/vimo-stock-intelligence and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Vietnam's first MCP server for financial AI agents.
Gives Claude, ChatGPT, Gemini, and any AI agent instant access to VIMO's proprietary financial intelligence platform — covering 2,000+ Vietnamese stocks across HOSE, HNX, UPCOM.
🔗 Live data: vimo.cuthongthai.vn
📖 API Docs: vimo.cuthongthai.vn/finance/ai/api-docs
📜 Terms of Use: vimo.cuthongthai.vn/terms-of-use
Register at vimo.cuthongthai.vn/finance/ai/api-docs
Free tier: 100 calls/day
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"vimo": {
"command": "npx",
"args": ["-y", "@vimo.cuthongthai.vn/mcp-server"],
"env": {
"VIMO_API_KEY": "your_api_key_here"
}
}
}
}
Restart Claude Desktop. Done! 🎉
In Claude, try:
"Phân tích cổ phiếu FPT cho tôi"
"Thị trường chứng khoán VN hôm nay thế nào?"
"Cổ phiếu nào ngoại tệ đang mua nhiều nhất?"
| Tool | Description |
|---|---|
get_ta_narrative | TA signals (RSI, MACD, Bollinger, MFI) + AI narrative |
get_bctc_summary | Financial health (Z-Score, F-Score, M-Score, DuPont) |
get_ai_performance | Forward-test verified AI pick win rate & Sharpe |
get_ai_performance_reports | Monthly per-stock performance breakdown |
get_factor_importance | Why AI picked a specific stock (explainability) |
| Tool | Description |
|---|---|
get_foreign_flow | Foreign investor net buy/sell — top 10 stocks |
get_sector_rotation | Sector heatmap (hot/cold by daily return) |
get_whale_activity | Unusual volume detector (>2× average) |
get_market_snapshot | Full daily snapshot (all 13 collectors in 1 call) |
| Tool | Category |
|---|---|
get_warwatch_playbooks | 🌍 Geopolitical risk strategies |
get_political_playbooks | 🏛️ Policy impact (NQ68, infrastructure) |
get_macro_playbooks | 📊 GDP, CPI, FDI scenarios |
get_bank_rate_playbooks | 🏦 Interest rate strategies |
get_sector_rotation_playbooks | 🔄 Market cycle rotation |
get_dong_tien_playbooks | 💰 Smart money flow |
get_commodity_playbooks | 🛢️ Oil, gold, steel impact |
get_bds_playbooks | 🏠 Real estate sector |
get_fund_playbooks | 📈 ETF & mutual fund strategies |
get_gia_toc_playbooks | 🏢 Business dynasty analysis |
get_psychology_playbooks | 🧠 Behavioral finance |
get_wealth_playbooks | 💎 Personal wealth building |
get_investment_checklists | ✅ Pre-investment due diligence |
npm install @vimo.cuthongthai.vn/mcp-server
Or run directly:
VIMO_API_KEY=your_key npx @vimo.cuthongthai.vn/mcp-server
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const transport = new StdioClientTransport({
command: "npx",
args: ["-y", "@vimo.cuthongthai.vn/mcp-server"],
env: { VIMO_API_KEY: "your_key" },
});
const client = new Client({ name: "my-app", version: "1.0.0" });
await client.connect(transport);
// Analyze FPT stock
const result = await client.callTool({
name: "get_ta_n
... [View full README on GitHub](https://github.com/cuthongthai-vn/vimo-mcp-server#readme)