Files
dap-was-dapms/config/local-core-tools-manifest-sample-v1.json
2026-08-05 15:54:25 +09:00

30 lines
674 B
JSON

{
"bundleId": "core",
"revision": "sample-v10",
"tools": [
{
"name": "core.weather",
"title": "날씨 조회",
"description": "로컬 매니페스트 fallback 동작을 확인하는 테스트 도구입니다.",
"inputSchema": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "조회할 도시명"
}
},
"required": [
"city"
],
"additionalProperties": false
},
"_meta": {
"version": "sample-v1",
"endpoint": "http://localhost:18080/mcp",
"enabled": true
}
}
]
}