Estrutura inicial, ambiente IA

This commit is contained in:
victor
2026-05-14 09:54:24 -03:00
commit 48095a3c64
49 changed files with 4596 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "mcp-oracle-custom",
"version": "1.0.0",
"description": "Custom MCP server for Oracle with pool, timeout and row limits.",
"main": "server.mjs",
"bin": {
"mcp-oracle-custom": "./cli.mjs"
},
"files": [
"cli.mjs",
"server.mjs",
"run-mcp.sh",
"README.md",
".env.example"
],
"scripts": {
"start": "node ./cli.mjs",
"pack": "npm pack"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"oracledb": "^6.10.0",
"zod": "^4.3.6"
}
}