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 filterapilot route show— Show endpoint details (params, request body, responses)apilot schema show— Show named schema definitionsapilot request send— Send HTTP requests to configured environmentsapilot 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