@boseong/mcp-openai-gpt5
Version:
MCP server for OpenAI GPT-5 API with dual interface support (simple + messages)
64 lines (63 loc) • 1.79 kB
JSON
{
"name": "@boseong/mcp-openai-gpt5",
"version": "1.1.0",
"description": "MCP server for OpenAI GPT-5 API with dual interface support (simple + messages)",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-openai-gpt5": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"build": "tsc && chmod +x dist/index.js",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"prepublishOnly": "npm run rebuild",
"deploy": "npm run rebuild && npm publish --access public",
"deploy:dry": "npm run rebuild && npm publish --dry-run --access public",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release:patch": "npm run version:patch && npm run deploy",
"release:minor": "npm run version:minor && npm run deploy",
"release:major": "npm run version:major && npm run deploy"
},
"author": "boseong",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"gpt5",
"gpt-5",
"openai",
"claude",
"ai",
"openai-gpt5"
],
"repository": {
"type": "git",
"url": "git+https://github.com/boseong/mcp-servers.git"
},
"homepage": "https://github.com/boseong/mcp-servers/tree/main/server/gpt5-server#readme",
"bugs": {
"url": "https://github.com/boseong/mcp-servers/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2"
}
}