mcp-server-gpt-chat
MCP server for OpenAI ChatGPT API. Enables chat completions, vision analysis, embeddings, and model listing through natural language.
README
mcp-server-gpt-chat
An MCP (Model Context Protocol) server for the OpenAI ChatGPT API. Built in Rust, exposes chat completions, vision, embeddings, and model listing as MCP tools.
Communicates via stdio using JSON-RPC 2.0, like all MCP servers.
Tools
| Tool | Description |
|---|---|
chat |
Send a chat completion request to ChatGPT with optional multi-turn history, system prompt, structured output (JSON schema), and model selection |
chat_with_vision |
Analyse an image with ChatGPT's vision capabilities given an image URL and text prompt |
embedding |
Generate text embeddings using OpenAI's embedding model |
list_models |
List all available OpenAI models and their IDs |
chat
Send a chat completion request. Supports multi-turn conversations via a JSON message history array, system prompts, structured output via JSON schema, temperature control, and model selection.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
prompt |
string | yes | The user message to send |
model |
string | no | Model to use (default: gpt-4o) |
system_prompt |
string | no | System prompt to set context |
messages |
string | no | Full conversation history as JSON array of {role, content} objects |
temperature |
float | no | Sampling temperature (0.0 - 2.0) |
max_tokens |
integer | no | Maximum tokens to generate |
response_schema |
string | no | JSON schema string to enforce structured output |
chat_with_vision
Analyse an image using ChatGPT's vision capabilities.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
prompt |
string | yes | Text prompt describing what to analyse |
image_url |
string | yes | URL of the image (must be http:// or https://) |
model |
string | no | Model to use (default: gpt-4o) |
detail |
string | no | Image detail level: low or high (default: high) |
temperature |
float | no | Sampling temperature (0.0 - 2.0) |
max_tokens |
integer | no | Maximum tokens to generate |
embedding
Generate text embeddings.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
input |
string | yes | Text to embed as JSON: a single string or array of strings |
model |
string | no | Embedding model to use (default: text-embedding-3-small) |
list_models
List all available OpenAI models. No parameters.
Prerequisites
- Rust (edition 2024)
- An OpenAI API key from platform.openai.com
Setup
Create the config file:
mkdir -p ~/.config/mcp-server-gpt-chat
Create ~/.config/mcp-server-gpt-chat/config.toml:
api_key = "sk-..."
Build
cargo build --release
This produces target/release/gpt-chat.
For development:
cargo build # debug build
cargo run # run in dev mode
RUST_LOG=debug cargo run # run with debug logging
MCP Configuration
Add to your Claude Desktop config (~/.config/Claude/claude_desktop_config.json):
{
"mcpServers": {
"gpt-chat": {
"command": "/path/to/gpt-chat"
}
}
}
Project Structure
src/
main.rs - entry point, config loading, stdio transport setup
server.rs - MCP tool definitions (chat, chat_with_vision, embedding, list_models)
api.rs - OpenAI HTTP client, request/response types, response formatters
params.rs - tool parameter types with serde and JSON Schema derives
config.rs - TOML config loading
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.