MCP Server
io.github.kcw2034-sayouzone/mcp-opendart-server MCP Server
io.github.kcw2034-sayouzone/mcp-opendart-server
What is the io.github.kcw2034-sayouzone/mcp-opendart-server MCP server?
An MCP server that provides OpenDart API
How to install io.github.kcw2034-sayouzone/mcp-opendart-server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
OPENDART_API_KEYrequiredsecretYour API key for OpenDart
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-opendart-server": {
"command": "uvx",
"args": [
"sayou-opendart-mcp"
],
"env": {
"OPENDART_API_KEY": "<YOUR_OPENDART_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-opendart-server": {
"command": "uvx",
"args": [
"sayou-opendart-mcp"
],
"env": {
"OPENDART_API_KEY": "<YOUR_OPENDART_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-opendart-server": {
"command": "uvx",
"args": [
"sayou-opendart-mcp"
],
"env": {
"OPENDART_API_KEY": "<YOUR_OPENDART_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-opendart-server": {
"type": "stdio",
"command": "uvx",
"args": [
"sayou-opendart-mcp"
],
"env": {
"OPENDART_API_KEY": "<YOUR_OPENDART_API_KEY>"
}
}
}
}Claude Code
claude mcp add mcp-opendart-server --env OPENDART_API_KEY=<YOUR_OPENDART_API_KEY> -- uvx sayou-opendart-mcpRelated MCP servers
An MCP server that provides OpenDart API
View repository →