Skip to content

v0.6.6

Latest

Choose a tag to compare

@Yuerchu Yuerchu released this 26 Jun 05:44
· 6 commits to main since this release
1a8d466

What's New

MCP Server for AI Agents

Apilot now includes an MCP (Model Context Protocol) server that lets AI agents query OpenAPI specs and send HTTP requests without loading the full spec into context.

7 MCP tools: apilot_spec_load, apilot_route_list, apilot_route_show, apilot_schema_show, apilot_request_send, apilot_env_list, apilot_generate_example

Configure in Claude Code (.mcp.json):

{
  "mcpServers": {
    "apilot": {
      "command": "npx",
      "args": ["@yuerchu/apilot", "serve"]
    }
  }
}

CLI API Querying

New subcommands for querying OpenAPI specs from the command line:

  • apilot route list — List endpoints with tag/method/keyword filter
  • apilot route show — Show endpoint details (params, request body, responses)
  • apilot schema show — Show named schema definitions
  • apilot request send — Send HTTP requests to configured environments
  • apilot env list/add/remove — Manage environments

Environment Configuration

New apilot.config.json for managing environments with {{ENV_VAR}} interpolation from process.env.

Other

  • Updated shadcn/ui components (menubar, sidebar, slider, sonner)
  • Fixed typecheck and lint errors