Skip to content

Commit debb078

Browse files
committed
Remove CI workflow from plugin manifest
Re-signed branch history. Previous subjects: - Add Codex CLI plugin manifest - Fix: remove unsupported capabilities field from plugin manifest - Fix: add skills field to plugin manifest - Fix: address code review feedback - Add Codex plugin quality gate CI - Remove CI workflow from plugin PR - Remove CI workflow from plugin manifest
1 parent e5cad13 commit debb078

4 files changed

Lines changed: 63 additions & 0 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "fastapi-mcp",
3+
"version": "0.1.0",
4+
"description": "Expose FastAPI endpoints as MCP tools for Codex",
5+
"author": {
6+
"name": "tadata-org",
7+
"url": "https://github.com/tadata-org/fastapi_mcp"
8+
},
9+
"homepage": "https://github.com/tadata-org/fastapi_mcp",
10+
"repository": "https://github.com/tadata-org/fastapi_mcp",
11+
"keywords": [
12+
"mcp",
13+
"fastapi",
14+
"codex"
15+
],
16+
"mcpServers": "./.mcp.json",
17+
"interface": {
18+
"displayName": "FastAPI MCP",
19+
"shortDescription": "Expose FastAPI endpoints as MCP tools",
20+
"longDescription": "Expose your FastAPI endpoints as Model Context Protocol (MCP) tools, with auth support.",
21+
"category": "Development",
22+
"websiteURL": "https://github.com/tadata-org/fastapi_mcp"
23+
},
24+
"skills": "./skills/"
25+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Plugin Quality Gate
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- ".codex-plugin/**"
7+
- "skills/**"
8+
- ".mcp.json"
9+
10+
jobs:
11+
scan:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Codex plugin quality gate
16+
uses: hashgraph-online/hol-codex-plugin-scanner-action@v1
17+
with:
18+
plugin_dir: "."
19+
min_score: 80
20+
fail_on_severity: high

.mcp.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"mcpServers": {
3+
"fastapi-mcp": {
4+
"command": "uvx",
5+
"args": [
6+
"fastapi-mcp"
7+
]
8+
}
9+
}
10+
}

skills/fastapi-mcp/SKILL.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: fastapi-mcp
3+
description: Expose FastAPI endpoints as MCP tools for Codex
4+
---
5+
6+
# FastAPI MCP for Codex
7+
8+
Expose FastAPI endpoints as MCP tools. See https://github.com/tadata-org/fastapi_mcp for setup.

0 commit comments

Comments
 (0)