Skip to content

Commit 4d47ada

Browse files
committed
Remove CI workflow from plugin manifest
Re-signed branch history. Previous subjects: - Add Codex CLI 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 6fef044 commit 4d47ada

4 files changed

Lines changed: 67 additions & 0 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "firecrawl-mcp",
3+
"version": "0.1.0",
4+
"description": "Powerful web scraping and search from Codex via MCP",
5+
"author": {
6+
"name": "firecrawl",
7+
"url": "https://github.com/firecrawl/firecrawl-mcp-server"
8+
},
9+
"homepage": "https://github.com/firecrawl/firecrawl-mcp-server",
10+
"repository": "https://github.com/firecrawl/firecrawl-mcp-server",
11+
"keywords": [
12+
"mcp",
13+
"codex"
14+
],
15+
"mcpServers": "./.mcp.json",
16+
"skills": "./skills/",
17+
"interface": {
18+
"displayName": "Firecrawl MCP",
19+
"shortDescription": "Powerful web scraping and search from Codex via MCP",
20+
"longDescription": "Official Firecrawl MCP Server. Adds powerful web scraping and search to Codex and any LLM client.",
21+
"category": "Web Scraping",
22+
"websiteURL": "https://github.com/firecrawl/firecrawl-mcp-server"
23+
}
24+
}
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"mcpServers": {
3+
"firecrawl-mcp": {
4+
"command": "npx",
5+
"args": [
6+
"-y",
7+
"firecrawl-mcp"
8+
]
9+
}
10+
}
11+
}

skills/firecrawl-mcp/SKILL.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: firecrawl-mcp
3+
description: Powerful web scraping and search from Codex via MCP
4+
---
5+
6+
# Firecrawl MCP for Codex
7+
8+
Use Firecrawl MCP from Codex via MCP.
9+
10+
## When to use
11+
- When you need firecrawl-mcp capabilities in your Codex workflow
12+
- See https://github.com/firecrawl/firecrawl-mcp-server for full setup instructions

0 commit comments

Comments
 (0)