-
-
Notifications
You must be signed in to change notification settings - Fork 984
feat: Add Codex CLI plugin manifest #421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
4689dde
e103d65
0bd8113
e136d00
a7c5875
a6fbb4c
8caa8d1
cd255c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "name": "pal-mcp-server", | ||
| "version": "0.1.0", | ||
| "description": "Multi-model LLM routing for Codex via MCP", | ||
| "author": { | ||
| "name": "BeehiveInnovations", | ||
| "url": "https://github.com/BeehiveInnovations/pal-mcp-server" | ||
| }, | ||
| "homepage": "https://github.com/BeehiveInnovations/pal-mcp-server", | ||
| "repository": "https://github.com/BeehiveInnovations/pal-mcp-server", | ||
| "keywords": [ | ||
| "mcp", | ||
| "codex" | ||
| ], | ||
| "mcpServers": "./.mcp.json", | ||
| "interface": { | ||
| "displayName": "PAL MCP Server", | ||
| "shortDescription": "Multi-model LLM routing for Codex via MCP", | ||
| "longDescription": "Use Claude Code / CodexCLI + Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model working as one.", | ||
| "category": "Development", | ||
| "websiteURL": "https://github.com/BeehiveInnovations/pal-mcp-server" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "mcpServers": { | ||
| "pal-mcp-server": { | ||
| "command": "uvx", | ||
| "args": [ | ||
| "--from", | ||
| "git+https://github.com/BeehiveInnovations/pal-mcp-server.git", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The MCP launcher pulls Useful? React with 👍 / 👎. |
||
| "pal-mcp-server" | ||
| ] | ||
|
Comment on lines
+4
to
+9
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The MCP server configuration is missing the "command": "uvx",
"args": [
"--from",
"git+https://github.com/BeehiveInnovations/pal-mcp-server.git",
"pal-mcp-server"
],
"env": {
"PATH": "/usr/local/bin:/usr/bin:/bin:/opt/homebrew/bin:~/.local/bin",
"GEMINI_API_KEY": "REPLACE_WITH_YOUR_KEY",
"OPENAI_API_KEY": "REPLACE_WITH_YOUR_KEY"
} |
||
| } | ||
| } | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,12 @@ | ||||||||
| --- | ||||||||
| name: pal-mcp-server | ||||||||
| description: Multi-model LLM routing for Codex via MCP | ||||||||
| --- | ||||||||
|
|
||||||||
| # PAL MCP Server for Codex | ||||||||
|
|
||||||||
| Use PAL MCP Server from Codex via MCP. | ||||||||
|
|
||||||||
| ## When to use | ||||||||
| - When you need pal-mcp-server capabilities in your Codex workflow | ||||||||
| - See https://github.com/BeehiveInnovations/pal-mcp-server for full setup instructions | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Markdown file is missing a trailing newline. It is best practice to end all text files with a newline character.
Suggested change
|
||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The path to the MCP configuration file appears to be incorrect. Since
plugin.jsonis located in the.codex-plugin/directory, the relative path./.mcp.jsonpoints to.codex-plugin/.mcp.json. However, the.mcp.jsonfile is located at the repository root. This should be updated to../.mcp.jsonto correctly reference the file.