We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dragon1086/kospi-kosdaq-stock-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
type: object
required:
- kakaoId
- kakaoPw
properties:
kakaoId:
type: string
description: "Kakao account ID for KRX Data Marketplace authentication"
kakaoPw:
type: string
description: "Kakao account password"
commandFunction:
|-
(config) => ({
command: 'uvx',
args: ['kospi_kosdaq_stock_server'],
env: {
KAKAO_ID: config.kakaoId,
KAKAO_PW: config.kakaoPw
}
})