Initial import NDC_1C

This commit is contained in:
2026-03-26 10:38:25 +03:00
commit a162d77ef7
2943 changed files with 3615871 additions and 0 deletions
+8
View File
@@ -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`.
+28
View File
@@ -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"]
}
]
}
+21
View File
@@ -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*"