"삼성전자의 최근 1년간 재무 성과를 분석해 줘."
get_financial_summary_by_date 또는 get_financial_info_by_date 그리고 get_dividends를 사용할 것입니다.
"LG전자의 주요 경쟁사는 누구이고, 그들의 주요 제품은 무엇이야?"
get_competitors를 사용하고, 경쟁사 제품 정보를 위해 get_corp_products_info를 사용할 수 있습니다.
"현대자동차에 대한 뉴스 기사를 바탕으로 현재 시장 분위기를 요약해 줘."
get_news_sentiments를 사용할 것입니다.
"SK하이닉스가 제공하는 주요 제품과 서비스는 무엇이고, 그들의 사업에 대해 간략하게 설명해 줘."
get_corp_products_info와 get_corp_bsns_summary를 사용할 것입니다.
MCP 클라이언트(Claude, Cursor-ai 등)에서 간단한 설정으로 사용할 수 있습니다(Claude, Cursor-ai, etc.). DartPoint AI MCP 서버 주소와 발급받은 API 키를 사용하여 설정하세요.
https://dartpoint.ai/mcp-sse/mcpClaude Desktop에 설정을 추가하세요(claude_desktop_config.json).
{
"mcpServers": {
"dartpoint": {
"command": "npx",
"args":[
"mcp-remote",
"https://dartpoint.ai/mcp-sse/mcp",
"--header",
"DARTPOINT-API-KEY:<API Key from https://dartpoint.ai>"
]
}
}
}
SuperGateway를 이용해 설정하세요.
{
"dartpoint": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--sse",
"https://dartpoint.ai/mcp-sse/mcp",
"--header",
"DARTPOINT-API-KEY:"
]
}
}
Cursor-AI에 설정을 추가하세요.
{
"mcpServers": {
"dartpoint": {
"url": "https://dartpoint.ai/mcp-sse/mcp",
"headers": {
"DARTPOINT-API-KEY": "<API Key from https://dartpoint.ai>"
}
}
}
}