hono

Installation
Summary

Hono CLI integration for documentation lookup, API testing, and bundle optimization.

  • Search and view Hono documentation directly via CLI commands, with pretty-printed output for readability
  • Test HTTP endpoints (GET, POST, with headers and request bodies) without starting a server using hono request
  • Bundle and optimize Hono applications for multiple targets including Cloudflare Workers and Deno with optional minification
  • Works via npx without global installation, enabling seamless integration into agent workflows
SKILL.md

Hono Skill

Build Hono web applications. This skill provides inline API knowledge for AI. Use npx hono request to test endpoints. If the hono-docs MCP server is configured, prefer its tools for the latest documentation over the inline reference.

Hono CLI Usage

Request Testing

Test endpoints without starting an HTTP server. Uses app.request() internally.

# GET request
npx hono request [file] -P /path

# POST request with JSON body
npx hono request [file] -X POST -P /api/users -d '{"name": "test"}'

Note: Do not pass credentials directly in CLI arguments. Use environment variables for sensitive values. hono request does not support Cloudflare Workers bindings (KV, D1, R2, etc.). When bindings are required, use workers-fetch instead:

Installs
6.8K
GitHub Stars
143
First Seen
Jan 21, 2026