package.json•2.02 kB
{
"name": "@toolprint/mcp-graphql-forge",
"version": "0.1.1",
"description": "MCP server that exposes GraphQL APIs to AI tools through automatic schema introspection and tool generation",
"main": "dist/cli.js",
"type": "module",
"bin": {
"mcp-graphql-forge": "dist/bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolprint/mcp-graphql-forge.git"
},
"homepage": "https://github.com/toolprint/mcp-graphql-forge#readme",
"bugs": {
"url": "https://github.com/toolprint/mcp-graphql-forge/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc && chmod +x dist/bin.js",
"dev": "tsx src/server.ts",
"dev:http": "tsx src/http-server.ts",
"start": "node dist/server.js",
"start:http": "node dist/http-server.js",
"introspect": "tsx src/introspect.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"graphql",
"proxy",
"tools",
"ai",
"automation",
"schema-introspection",
"caching",
"typescript",
"toolprint",
"onegrep"
],
"author": "OneGrep, Inc. <support@onegrep.dev>",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@toolprint/mcp-logger": "^0.0.7",
"commander": "^11.1.0",
"express": "^4.18.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.54.0",
"graphql-tools": "^9.0.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
}
}