Chatgpt
@automateyournetwork
Chatgpt について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"chatgpt": {
"command": "python3",
"args": [
"server.py",
"--oneshot"
],
"env": {
"OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Chatgpt?
This MCP (Model Context Protocol) stdio server forwards prompts to OpenAI’s ChatGPT (GPT-4o) for advanced summarization, analysis, and reasoning. It is designed to run inside LangGraph-based assistants.
How to use Chatgpt?
Build and run the Docker container with your OPENAI_API_KEY, or run the Python script directly using the --oneshot flag. Configure the server via an mcpServers JSON block, setting the command to python3 server.py --oneshot and providing the API key as an environment variable. The only exposed tool is ask_chatgpt, which takes a content string.
Key features of Chatgpt
- Exposes a single tool:
ask_chatgpt - Sends text to GPT-4o for external reasoning
- Supports one-shot stdin/stdout mode
- Deployable via Docker or Python directly
- API key injected securely through environment variables
Use cases of Chatgpt
- Summarize long documents
- Analyze configuration files
- Compare multiple options
- Perform advanced natural language reasoning
FAQ from Chatgpt
What tool does this server expose?
It exposes the ask_chatgpt tool, which forwards the provided content to GPT-4o for analysis or summarization.
How do I provide my OpenAI API key?
Set the OPENAI_API_KEY environment variable, either in a .env file (auto‑loaded by python‑dotenv) or by exporting it directly.
Can I test the server locally?
Yes, use the --oneshot flag and send a JSON‑formatted request via echo, as shown in the README manual test example.
How do I integrate Chatgpt with LangGraph?
Configure the server with command python3, args ["server.py", "--oneshot"], and the OPENAI_API_KEY in the environment block of your LangGraph pipeline.
What dependencies does it require?
The server depends on openai, requests, and python-dotenv; these are installed during the Docker build.
「AI とエージェント」の他のコンテンツ
Solon Ai
opensolonJava AI application development framework (supports LLM-tool,skill; RAG; MCP; Agent-ReAct,Team-Agent). Compatible with java8 ~ java25. It can also be embedded in SpringBoot, jFinal, Vert.x, Quarkus, and other frameworks.
Sequential Thinking Multi-Agent System (MAS)
FradSerAn advanced sequential thinking process using a Multi-Agent System (MAS) built with the Agno framework and served via MCP.
Model Context Protocol for Unreal Engine
chongdashuEnable AI assistant clients like Cursor, Windsurf and Claude Desktop to control Unreal Engine through natural language using the Model Context Protocol (MCP).
Just Prompt - A lightweight MCP server for LLM providers
dislerjust-prompt is an MCP server that provides a unified interface to top LLM providers (OpenAI, Anthropic, Google Gemini, Groq, DeepSeek, and Ollama)
meGPT - upload an author's content into an LLM
adriancoCode to process many kinds of content by an author into an MCP server
コメント