Skip to content

Commit db90cb6

Browse files
committed
Add Codex CLI plugin manifest
1 parent e5cad13 commit db90cb6

3 files changed

Lines changed: 47 additions & 0 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
"capabilities": [
23+
"Read",
24+
"Write",
25+
"Interactive"
26+
],
27+
"websiteURL": "https://github.com/tadata-org/fastapi_mcp"
28+
}
29+
}

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