Gpt5 Mcp
Description
# MCP Servers Collection A collection of MCP (Model Context Protocol) servers for integrating various AI models and services with Claude Desktop. ## π¦ Available Servers ### GPT-5 Server Integration with OpenAI's GPT-5 API for advanced text generation and conversationβ¦
About
# MCP Servers Collection A collection of MCP (Model Context Protocol) servers for integrating various AI models and services with Claude Desktop. ## π¦ Available Servers ### GPT-5 Server Integration with OpenAI's GPT-5 API for advanced text generation and conversation capabilities. - **Package**β¦
Details
- Author
- Bill1907
- Downloads
- 157
- Categories
- Other
Jump to
- Text generation with GPTβ5 API
- Structured conversations
- Reasoning effort control
- Easy integration with Claude Desktop
- Simple npm/npx installation
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Gpt5 McpCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install globally via npm install -g @boseong/mcp-server-gpt5 or run directly with npx @boseong/mcp-server-gpt5. Configure the OPENAI_API_KEY environment variable and add a server entry in your Claude Desktop configuration file (claude_desktop_config.json) using the command npx and args ["@boseong/mcp-server-gpt5"].
gpt5_generate
Generate text using OpenAI GPT-5 API with a simple input prompt
gpt5_messages
Generate text using GPT-5 with structured conversation messages
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"gpt5 mcp": {
"openai-gpt5": {
"command": "npx",
"args": [
"@boseong/mcp-openai-gpt5"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
}
}
}
McpServers
{
"openai-gpt5": {
"command": "npx",
"args": [
"@boseong/mcp-openai-gpt5"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
}
MCP Servers Collection
A collection of MCP (Model Context Protocol) servers for integrating various AI models and services with Claude Desktop.
π¦ Available Servers
GPT-5 Server
Integration with OpenAI's GPT-5 API for advanced text generation and conversation capabilities.- Package: @boseong/mcp-server-gpt5
- Features: Text generation, structured conversations, reasoning effort control
- Documentation
Future Servers (Planned)
- Anthropic Server: Direct integration with Claude API - Google Gemini Server: Integration with Google's Gemini models - Local LLM Server: Support for local language models - Database Query Server: SQL and NoSQL database interactions - Web Scraping Server: Advanced web content extractionπ Quick Start
Prerequisites
- Node.js >= 18.0.0 - npm or yarn - Claude Desktop applicationInstallation
Each server can be installed independently via npm:
# Install GPT-5 server
npm install -g @boseong/mcp-server-gpt5
Or use directly with npx (no installation required):
npx @boseong/mcp-server-gpt5
Configuration
1. Set up environment variables:
cd server
cp .env.example .env
# Edit .env with your API keys
2. Configure Claude Desktop:
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"gpt5": {
"command": "npx",
"args": ["@boseong/mcp-server-gpt5"],
"env": {
"OPENAI_API_KEY": "your-api-key"
}
}
}
}
π οΈ Development
Project Structure
mcp-servers/
βββ server/ # All MCP server implementations
β βββ .env.example # Environment variables template
β βββ gpt5-server/ # GPT-5 MCP server
β β βββ src/ # TypeScript source
β β βββ dist/ # Compiled JavaScript (git-ignored)
β β βββ package.json # Package configuration
β β βββ README.md # Server documentation
β βββ [other-servers]/ # Future MCP servers
βββ .gitignore # Git ignore rules
βββ CLAUDE.md # Claude Code guidance
βββ README.md # This file
Creating a New MCP Server
1. Create a new directory under server/:
mkdir server/your-server-name
cd server/your-server-name
npm init
2. Install MCP SDK:
npm install @modelcontextprotocol/sdk
3. Follow the structure of existing servers for implementation
4. Add TypeScript support:
npm install --save-dev typescript @types/node
5. Configure build process and create your MCP server implementation
Building from Source
# Clone the repository
git clone https://github.com/boseong/mcp-servers.git
cd mcp-servers
Build a specific server
cd server/gpt5-server
npm install
npm run build
Testing Locally
# Link the package locally
cd server/gpt5-server
npm link
Test the server
mcp-server-gpt5
π Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Guidelines
1. Follow the existing code structure and patterns 2. Add comprehensive documentation 3. Include TypeScript types 4. Test thoroughly before submitting 5. Update this README when adding new serversπ License
Each server may have its own license. Check the individual server directories for specific license information.
- GPT-5 Server: MIT License
π Resources
- Model Context Protocol Documentation
- Claude Desktop
- MCP SDK
π¬ Support
For issues and questions:
- Create an issue in the GitHub repository
- Check individual server documentation
- Refer to the MCP documentation
π§ Roadmap
- [ ] Add more AI model integrations
- [ ] Create utility servers (database, file system, etc.)
- [ ] Develop testing framework for MCP servers
- [ ] Add server templates for quick development
- [ ] Create automated publishing workflow
---
Note: This is an active development repository. New servers and features are being added regularly.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



