package.json•1.04 kB
{
"name": "grok-mcp",
"version": "1.0.1",
"description": "MCP server for Grok AI API integration",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"grok",
"ai",
"api",
"model-context-protocol",
"cline",
"chat",
"vision",
"function-calling"
],
"author": "Braden Olmstead",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bob-lance/grok-mcp.git"
},
"bugs": {
"url": "https://github.com/Bob-lance/grok-mcp/issues"
},
"homepage": "https://github.com/Bob-lance/grok-mcp#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2"
},
"files": [
"build/",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}