Initial import NDC_1C
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
# MCP Draft Configs
|
||||
|
||||
This folder contains draft files to bootstrap MCP integration after OData viability is confirmed.
|
||||
|
||||
- `odata_mcp_go.example.yaml` for OData bridge in Go ecosystem
|
||||
- `odata-mcp-proxy.example.json` for config-driven Node proxy
|
||||
|
||||
Both files are placeholders and require real endpoint and credentials from `.env`.
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"serverName": "ndc-1c-odata-proxy",
|
||||
"transport": "stdio",
|
||||
"odata": {
|
||||
"baseUrl": "http://localhost/AccountingBase/odata/standard.odata/",
|
||||
"auth": {
|
||||
"type": "basic",
|
||||
"username": "readonly_user",
|
||||
"password": "change_me"
|
||||
},
|
||||
"readOnly": true
|
||||
},
|
||||
"entities": [
|
||||
{
|
||||
"name": "Documents",
|
||||
"operations": ["list", "get"]
|
||||
},
|
||||
{
|
||||
"name": "Counterparties",
|
||||
"operations": ["list", "get"]
|
||||
},
|
||||
{
|
||||
"name": "Postings",
|
||||
"operations": ["list", "get"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
server:
|
||||
name: "ndc-1c-odata-mcp"
|
||||
mode: "readonly"
|
||||
|
||||
odata:
|
||||
endpoint: "http://localhost/AccountingBase/odata/standard.odata/"
|
||||
username: "readonly_user"
|
||||
password: "change_me"
|
||||
timeout_seconds: 30
|
||||
verify_tls: false
|
||||
|
||||
tools:
|
||||
include_patterns:
|
||||
- "Document*"
|
||||
- "Catalog*"
|
||||
- "Register*"
|
||||
exclude_patterns:
|
||||
- "*Create*"
|
||||
- "*Update*"
|
||||
- "*Delete*"
|
||||
|
||||
Reference in New Issue
Block a user