Skip to content

devfolioco/codex-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Devfolio Codex Plugin

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.

What It Includes

  • A devfolio skill 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.

Install

Add the Devfolio plugin marketplace:

codex plugin marketplace add devfolioco/codex-plugin

Then 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.git

Then add the checkout as a local Codex plugin marketplace:

codex plugin marketplace add /path/to/codex-plugin

After installation, start a new Codex thread and invoke the plugin with:

@devfolio show my active hackathons

MCP Setup

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.

OAuth Flow

  1. Install the plugin from the Devfolio marketplace.
  2. Connect the hosted MCP server with codex mcp add devfolio --url "https://mcp.devfolio.co/mcp".
  3. Complete the Devfolio consent screen when Codex opens it.
  4. 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.

Safety

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.

Compatibility Notes

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors