package.json•1.07 kB
{
"name": "o3-search-mcp",
"description": "MCP server that enables AI agents to perform intelligent web searches using OpenAI's o3 model with natural language queries",
"version": "0.0.9",
"main": "build/index.js",
"bin": {
"o3-search-mcp": "./build/index.js"
},
"files": [
"build/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yoshiko-pg/o3-search-mcp.git"
},
"bugs": {
"url": "https://github.com/yoshiko-pg/o3-search-mcp/issues"
},
"homepage": "https://github.com/yoshiko-pg/o3-search-mcp#readme",
"keywords": [
"mcp",
"claude",
"openai",
"o3",
"chatgpt",
"llm"
],
"author": "@yoshiko-pg",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.10.0",
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"openai": "^5.8.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^24.0.4",
"typescript": "^5.8.3"
}
}