- Home
- MCP servers
- Dartpoint
Dartpoint
- typescript
3
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
This DartPoint MCP Server provides access to structured corporate data from DART ( Korea’s Financial Supervisory Service) and exposes it through the MCP protocol for easy integration with large language models and analysis tools. You can use this server to pull company overviews, products, financials, competitors, and sentiment signals, then combine them with automated reports or analytical workflows.
How to use
Connect to the DartPoint MCP Server from your MCP client (Claude, Cursor, or any MCP-enabled integrator). You can choose either a remote HTTP endpoint configuration or a local stdio configuration depending on your tooling and hosting preferences. Use your issued API key to authorize requests.
How to install
Prerequisites: install Node.js (recommended LTS) and npm on your workstation or server.
Obtain your API key from DartPoint AI and keep it handy for the MCP header configuration.
Choose an MCP client and configure it with one of the provided MCP server examples. The server endpoints and commands are shown in the code blocks below.
Additional sections
{
"mcpServers": {
"dartpoint": {
"type": "http",
"url": "https://dartpoint.ai/mcp-sse/mcp",
"args": []
}
}
}
{
"mcpServers": {
"dartpoint": {
"command": "npx",
"args": [
"mcp-remote",
"https://dartpoint.ai/mcp-sse/mcp",
"--header",
"DARTPOINT_API_KEY:<API Key from https://dartpoint.ai>"
]
}
}
}
{
"mcpServers": {
"dartpoint": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--sse",
"https://dartpoint.ai/mcp-sse/mcp",
"--header",
"DARTPOINT_API_KEY:<API Key from https://dartpoint.ai>"
]
}
}
}
{
"mcpServers": {
"dartpoint": {
"url": "https://dartpoint.ai/mcp-sse/mcp",
"headers": {
"DARTPOINT_API_KEY": "<API Key from https://dartpoint.ai>"
}
}
}
}
Available tools
get_financial_summary_by_date
Fetches financial summaries for a given date range or date, enabling quick insight into revenue, profit margins, and key financial metrics.
get_financial_info_by_date
Retrieves detailed financial information for a company by a specific date, supporting in-depth financial analysis.
get_dividends
Returns dividend history information for a company over the requested period.
get_competitors
Identifies main competitors of a target company and optionally fetches their core products.
get_corp_products_info
Provides information about the key products and services offered by a corporation.
get_corp_bsns_summary
Summarizes a company’s business segments and overall business outlook.
get_news_sentiments
Analyzes sentiment across news articles related to a company to gauge market mood.