Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "genai-toolbox",
"version": "0.1.0",
"description": "MCP Toolbox for databases from Codex",
"author": {
"name": "googleapis",
"url": "https://github.com/googleapis/genai-toolbox"
},
"homepage": "https://github.com/googleapis/genai-toolbox",
"repository": "https://github.com/googleapis/genai-toolbox",
"keywords": [
"mcp",
"codex"
],
"mcpServers": "./.mcp.json",
"skills": "./skills/",
"interface": {
"displayName": "MCP Toolbox for Databases",
"shortDescription": "MCP Toolbox for databases from Codex",
"longDescription": "MCP Toolbox for Databases. An open source MCP server for databases by Google.",
"category": "Database",
"websiteURL": "https://github.com/googleapis/genai-toolbox"
}
}
20 changes: 20 additions & 0 deletions .github/workflows/plugin-quality-gate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Plugin Quality Gate

on:
pull_request:
paths:
- ".codex-plugin/**"
- "skills/**"
- ".mcp.json"

jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Codex plugin quality gate
uses: hashgraph-online/hol-codex-plugin-scanner-action@v1
with:
plugin_dir: "."
min_score: 80
fail_on_severity: high
13 changes: 13 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"mcpServers": {
"genai-toolbox": {
"command": "npx",
"args": [
"-y",
"@toolbox-sdk/server",
"--config",
"tools.yaml"
]
Comment on lines +5 to +10
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding the -y flag to the npx command. This ensures that npx runs non-interactively and automatically accepts the installation of the @toolbox-sdk/server package if it's not already present in the environment. This is a best practice for plugin manifests to avoid hanging in non-interactive shells, and it is consistent with the examples provided in the project's README (line 82).

      "args": [
        "-y",
        "@toolbox-sdk/server",
        "--config",
        "tools.yaml"
      ]

}
}
}
7 changes: 7 additions & 0 deletions skills/genai-toolbox/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# MCP Toolbox for Codex

Use MCP Toolbox for Databases from Codex via MCP.

## When to use
- When you need database tool capabilities in your Codex workflow
- See https://github.com/googleapis/genai-toolbox for full setup instructions