HarborHarbor
DocumentationGuidesPlugins
All plugins

OpenAI Docs

OpenAI platform documentation and OpenAPI spec lookup

MCPCategory: aiPopularity 49openai-mcp

OpenAI platform documentation and OpenAPI spec lookup

Install

hrbr plugins install openai-mcp

Harbor connects to https://developers.openai.com/mcp via http transport.

Quick start

hrbr exec 'return await openai_mcp.list({ limit: 5 })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "openai-mcp-example",
  handler: async (ctx) => {
    return await ctx.plugins.openai_mcp.list({ limit: 5 });
  },
});

Tools

Tool list is fetched at runtime from the MCP server. Search by intent before invoking:

hrbr plugins tools openai-mcp
hrbr tools search "<your intent>" --describe

Or open the dashboard plugin page for the live tool list.