A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).
Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).
Features:
Install the copilot with the commands below:
go install github.com/feiskyer/openai-copilot/cmd/openai-copilot@latest
| Environment | Description |
|---|---|
| OPENAI_API_KEY | OpenAI key. Required for OpenAI or OpenAI-compatible services. |
| OPENAI_API_BASE | OpenAI Base URL. Optional. |
| AZURE_OPENAI_API_KEY | Azure OpenAI API key. Required for Azure OpenAI service. |
| AZURE_OPENAI_API_BASE | Azure OpenAI Base URL. Required for Azure OpenAI service. |
| AZURE_OPENAI_API_VERSION | Azure OpenAI API version. Default is 2025-03-01-preview |
Set the OpenAI API key as the OPENAI_API_KEY environment variable to enable OpenAI functionality.
Anthropic Claude provides an OpenAI compatible API, so it could be used by using following config:
OPENAI_API_KEY=<your-anthropic-key>OPENAI_API_BASE='https://api.anthropic.com/v1/'For Azure OpenAI service, set the following environment variables:
AZURE_OPENAI_API_KEY=<your-api-key>AZURE_OPENAI_API_BASE=https://<replace-this>.openai.azure.com/AZURE_OPENAI_API_VERSION=2025-03-01-previewGoogle Gemini provides an OpenAI compatible API, so it could be used by using following config:
OPENAI_API_KEY=<your-google-ai-key>OPENAI_API_BASE='https://generativelanguage.googleapis.com/v1beta/openai/'For Ollama or other OpenAI compatible LLMs, set the following environment variables:
OPENAI_API_KEY=<your-api-key>OPENAI_API_BASE='http://localhost:11434/v1' (or your own base URL)Setup the OpenAI or AzureOpenAI environment and then run the following openai-copilot command:
# You can optionally config a different model and
# enable MCP integration (MCP format is same as Claude Desktop)
openai-copilot [-m gpt-4o] [-c <mcp-config-file>]
Here is the full usage of the openai-copilot command:
OpenAI Copilot
Usage:
openai-copilot [flags]
Flags:
-k, --count-tokens Print tokens count
-h, --help help for openai-copilot
-i, --max-iterations int Max iterations for the conversations (default 10)
-t, --max-tokens int Max tokens for the GPT model (default 4000)
-c, --mcp-config string MCP config file
-m, --model string OpenAI model to use (default "gpt-4o")
-p, --prompt string Prompts sent to GPT model for non-interactive mode. If not set, interactive mode is used
-v, --verbose Enable verbose output (default true)
# Use MCP servers configured from Claude Desktop
openai-copilot -c ~/Library/Application\ Support/Claude/claude_desktop_config.json
Here is a conversation sample (user inputs are after You:)):
$ openai-copilot --verbose=false
You: What is OpenAI?
AI: OpenAI is an artificial intelligence research lab, which includes a for-profit arm, OpenAI LP, and its parent company, the non-profit OpenAI Inc. Their mission is to ensure that artificial general intelligence (AGI) benefits all of humanity. They aim to build safe and beneficial AGI, and are also committed to aiding others in achieving this outcome.
You:
$ openai-copilot -p 'What is OpenAI?'
Initial response from LLM:
{
"question": "What is OpenAI?",
"thought": "OpenAI is a well-known organization in the field of artificial intelligence. I should provide a brief description of it.",
"action": {
"name": "search",
"input": "OpenAI"
},
"observation": "OpenAI is an artificial intelligence research lab consisting of the for-profit arm OpenAI LP and its parent company, the non-profit OpenAI Inc. OpenAI's mission is to ensure that artificial general intelligence (AGI) benefits all of humanity. They aim to build safe and beneficial AGI directly, but are also committed to aiding others in achieving this outcome.",
"final_answer": "OpenAI is an artificial intelligence research lab made up of a for-profit arm, OpenAI LP, and its parent company, the non-profit OpenAI Inc. Their mission is to ensure that artificial general intelligence (AGI) benefits all of humanity. They aim to directly build safe and beneficial AGI, but are also committed to aiding others in achieving this outcome."
}
Thought: OpenAI is a well-known organization in the field of artificial intelligence. I should provide a brief description of it.
Final answer: OpenAI is an artificial intelligence research lab made up of a for-profit arm, OpenAI LP, and its parent company, the non-profit OpenAI Inc. Their mission is to ensure that artificial general intelligence (AGI) benefits all of humanity. They aim to directly build safe and beneficial AGI, but are also committed to aiding others in achieving this outcome.
AI: OpenAI is an artificial intelligence research lab made up of a for-profit arm, OpenAI LP, and its parent company, the non-profit OpenAI Inc. Their mission is to ensure that artificial general intelligence (AGI) benefits all of humanity. They aim to directly build safe and beneficial AGI, but are also committed to aiding others in achieving this outcome.
The project is opensource at github feiskyer/openai-copilot with Apache License.
If you would like to contribute to the project, please follow these guidelines:
mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnos
MCP server integration for DaVinci Resolve Studio
Run Claude Code as an MCP server so any agent can delegate coding tasks to it