We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CaChiJ/kakao-navigation-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
app:
name: kakao-mobility-mcp-server
version: 1.0.2
build:
type: docker
dockerfile: ./Dockerfile
deploy:
env:
- name: KAKAO_REST_API_KEY
required: true
port: 3000
health:
path: /health
port: 3000
resources:
memory: 512
cpu: 1
startCommand:
type: stdio
configSchema:
type: object
properties:
kakaoRestApiKey:
type: string
description: "Kakao REST API 키"
required:
- kakaoRestApiKey
commandFunction: |-
(config) => ({
"command": "node",
"args": [
"dist/index.js"
],
"env": {
"KAKAO_REST_API_KEY": config.kakaoRestApiKey
}
})