1. Conduid
  2. AI
  3. Openai Copilot
MCP server · AI

Openai Copilot

Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).

Unclaimed Apache-2.0 last commit a year ago claudemcpdeepseekchatgptanthropicgoogle-geminimcp-clientaicopilot
54Fair

Scored yesterday · breakdown

About Openai Copilot

Openai Copilot is an MCP server published by feiskyer in the AI category: your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools). It has been installed 0 times through Conduid.

The repository has 25 stars and 3 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx openai-copilot

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Openai Copilot

Powered by Claude · Grounded in docs

I know everything about Openai Copilot. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.6.2v0.6.2 · 1 Apr 2025Support MCP (same format as Claude Desktop) Fix arguments for kubectl/trivy tools. Document Gemini/Claude support

README

OpenAI Copilot

Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).

Features:

  • OpenAI, Azure OpenAI, Anthropic Claude, Google Gemini and OpenAI-compatible services support.
  • Web access and Google search support without leaving the terminal.
  • Automatically execute any steps predicted from prompt instructions.
  • Model Context Protocol (MCP) support for bridging external tools.

Install

Install the copilot with the commands below:

go install github.com/feiskyer/openai-copilot/cmd/openai-copilot@latest

Setup

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

LLM Integrations

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-preview

Google 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)

How to use

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

# Use MCP servers configured from Claude Desktop
openai-copilot -c ~/Library/Application\ Support/Claude/claude_desktop_config.json

Interactive mode

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:

Non-interactive mode

$ 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.

Contribution

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:

  1. Fork the repository and clone it to your local machine.
  2. Create a new branch for your changes.
  3. Make your changes and commit them with a descriptive commit message.
  4. Push your changes to your forked repository.
  5. Open a pull request to the main repository.

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Openai Copilot

How do I install Openai Copilot?

Run npx openai-copilot, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Openai Copilot safe to use with an AI agent?

Its trust score is 54 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Openai Copilot still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.