This repository contains the Devfolio plugin for Codex. It lets Codex work with Devfolio through the Devfolio MCP server, including hackathon project submissions, profile side projects, active hackathon discovery, track/prize lookup, and upload URL generation.
- A
devfolioskill for preparing and safely managing project submissions through Devfolio MCP. - A Codex plugin manifest at
plugins/devfolio/.codex-plugin/plugin.json. - A hosted MCP configuration at
plugins/devfolio/.mcp.json. - MCP workflow guidance for Devfolio project and submission tools.
Add the Devfolio plugin marketplace:
codex plugin marketplace add devfolioco/codex-pluginThen open the Codex Plugins screen, choose Devfolio, and install the plugin.
For local development, clone this repository:
git clone git@github.com:devfolioco/codex-plugin.gitThen add the checkout as a local Codex plugin marketplace:
codex plugin marketplace add /path/to/codex-pluginAfter installation, start a new Codex thread and invoke the plugin with:
@devfolio show my active hackathons
The plugin declares the hosted Devfolio MCP endpoint:
{
"mcpServers": {
"devfolio": {
"type": "http",
"url": "https://mcp.devfolio.co/mcp"
}
}
}Connect Devfolio MCP with the bare MCP URL:
codex mcp add devfolio \
--url "https://mcp.devfolio.co/mcp"Devfolio MCP uses OAuth. Codex should open a Devfolio consent screen during setup, where you can authorize Codex to read your Devfolio identity, profile, hackathon participation, and projects, plus manage projects when you ask Codex to create or update them.
After authorizing, start a new Codex thread and invoke the plugin:
@devfolio show my active hackathons
If Codex says an MCP server named devfolio already exists, remove the existing entry and add it again:
codex mcp remove devfolio
codex mcp add devfolio \
--url "https://mcp.devfolio.co/mcp"For staging, internal testers can use the same shape with the Devrel endpoint:
codex mcp add devfolio \
--url "https://mcp.devrel.in/mcp"Legacy MCP URLs with apiKey query parameters are no longer valid for production. Remove the key from any existing Devfolio MCP config and reconnect with the bare MCP URL.
- Install the plugin from the Devfolio marketplace.
- Connect the hosted MCP server with
codex mcp add devfolio --url "https://mcp.devfolio.co/mcp". - Complete the Devfolio consent screen when Codex opens it.
- Start a new Codex thread and use
@devfolio.
The OAuth connection lets Codex call Devfolio MCP tools on your behalf. The plugin still requires explicit confirmation before create, update, upload, or publish actions.
Devfolio project publishing can make a project public immediately. The skill requires explicit confirmation before all create/update calls and before any status: "publish" action.
Keep future MCP and plugin changes additive where possible:
- Preserve the disconnected onboarding path so users without MCP auth understand that account-specific Devfolio MCP actions require OAuth authentication.
- Preserve existing tool names and argument meanings; add new optional fields or new tools before changing current flows.
- Use the OAuth-capable bare MCP URL for setup.
- Treat team support as an authorization-sensitive extension. Before create, update, or publish actions, the agent should read the current project/team state when available and ask for explicit confirmation.
- Keep draft-first behavior and explicit publish confirmation as stable safety guarantees.