jv-idx-mcp
MCP server exposing Indonesia Stock Exchange (IDX) market data as tools — fundamentals, broker flow, company profiles, and technical analysis via TA-Lib.
README
jv-idx-mcp
MCP server exposing Indonesia Stock Exchange (IDX) market data as tools — fundamentals, broker flow, company profiles, and technical analysis via TA-Lib.
Tools
| Tool | Description |
|---|---|
get_stock_fundamental |
Financial statements & ratios from IndoPremier (balance sheet, income, ratios) |
get_company_profile |
Company profile from idx.co.id |
get_broker_name |
Look up firm names for IDX broker codes |
get_broker_details |
Full trading summary for IDX brokers |
get_broker_summary |
Top buyers/sellers by lot volume over a date range |
get_broker_flow |
Non-overlapping broker activity sliced by interval |
get_broker_flow_cumulative |
Expanding cumulative broker positions over time |
list_indicators |
Browse ~130 TA-Lib indicators with their parameters |
compute_indicator |
Compute a single TA indicator (latest value or time series) |
get_ta_summary |
Full TA snapshot — ~50 indicators grouped by category |
LLM? Paste this link to get step-by-step setup instructions:
https://raw.githubusercontent.com/ibpme/jv-idx-mcp/refs/heads/main/LLM.md
or paste this into your coding agent:
Install and configure jv-idx-mcp server by following the instructions here:
https://raw.githubusercontent.com/ibpme/jv-idx-mcp/refs/heads/main/LLM.md
Authentication
The server supports optional Bearer token auth. Set MCP_API_KEY on the server to enable it — unauthenticated requests will receive 401.
export MCP_API_KEY=$(openssl rand -hex 32)
When auth is enabled, clients must send the token as an Authorization: Bearer <token> header (see client configs below). When MCP_API_KEY is unset, the server runs openly with no auth.
Connecting
The server runs over Streamable HTTP (/mcp) on port 8000.
Remote (hosted)
Replace YOUR_TOKEN with your MCP_API_KEY value. Omit the headers field if auth is not enabled.
Claude Code
claude mcp add --transport http jv-idx-mcp https://jv-idx-mcp.imanbudip.me/mcp --header "Authorization: Bearer YOUR_TOKEN"
Or add to ~/.claude.json / project .mcp.json:
{
"mcpServers": {
"jv-idx-mcp": {
"type": "http",
"url": "https://jv-idx-mcp.imanbudip.me/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
OpenAI Codex
{
"mcpServers": {
"jv-idx-mcp": {
"type": "http",
"url": "https://jv-idx-mcp.imanbudip.me/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
OpenCode
Add to ~/.config/opencode/config.json:
{
"mcp": {
"jv-idx-mcp": {
"type": "http",
"url": "https://jv-idx-mcp.imanbudip.me/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
Local (self-hosted via Docker)
# Optionally set a token before starting
export MCP_API_KEY=your-secret-token
docker compose up -d
Then use http://localhost:8000/mcp as the URL. Add the Authorization header to client configs if you set MCP_API_KEY.
Claude Code (local)
claude mcp add --transport http jv-idx-mcp http://localhost:8000/mcp
OpenCode (local)
{
"mcp": {
"jv-idx-mcp": {
"type": "http",
"url": "http://localhost:8000/mcp"
}
}
}
Running locally without Docker
Requires Python 3.14+ and uv. Also requires TA-Lib C library installed on your system.
uv sync
# With auth:
MCP_API_KEY=your-secret-token uv run python server.py
# Without auth:
uv run python server.py
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.