feat: everything

This commit is contained in:
2026-03-13 15:00:22 +00:00
commit bffd6f3262
44 changed files with 5149 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "sage-graphql-mcp",
"version": "0.1.0",
"description": "MCP Server for Sage X3 GraphQL API",
"type": "module",
"private": true,
"bin": {
"sage-x3-graphql": "src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"jose": "latest",
"zod": "latest"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}