@dannyboy2042/gpt5-mcp-server
Version:
A Model Context Protocol (MCP) server that provides seamless integration with OpenAI's GPT-5 API
62 lines (61 loc) • 1.66 kB
JSON
{
"name": "@dannyboy2042/gpt5-mcp-server",
"version": "2.1.1",
"description": "A Model Context Protocol (MCP) server that provides seamless integration with OpenAI's GPT-5 API",
"type": "module",
"main": "build/index.js",
"bin": {
"gpt5-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"release:beta": "npm version prerelease --preid=beta && git push && git push --tags"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"gpt-5",
"openai",
"ai",
"assistant",
"claude",
"anthropic"
],
"author": "Daniel Bowne <daniel@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danielbowne/gpt5-mcp.git"
},
"bugs": {
"url": "https://github.com/danielbowne/gpt5-mcp/issues"
},
"homepage": "https://github.com/danielbowne/gpt5-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
]
}