Skip to content

Commit dd04802

Browse files
Add Agentify — OpenAPI to agent interface compiler (#727)
1 parent 24b379f commit dd04802

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

src/content/tools/agentify.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Agentify
3+
description: An agent interface compiler that transforms OpenAPI specifications into 9 agent-ready formats including MCP servers, AGENTS.md, CLAUDE.md, .cursorrules, Skills, llms.txt, GEMINI.md, A2A Card, and standalone CLI. Supports tiered generation strategies for APIs of any size.
4+
categories:
5+
- mcp
6+
- code-generators
7+
link: https://www.npmjs.com/package/agentify-cli
8+
languages:
9+
typescript: true
10+
repo: https://github.com/koriyoshi2041/agentify
11+
oasVersions:
12+
v2: true
13+
v3: true
14+
v3_1: true
15+
v3_2: false
16+
---
17+
18+
Agentify compiles a single OpenAPI specification into a complete suite of agent interface formats, so that any AI coding assistant or agent framework can interact with your API natively.
19+
20+
Run a single command to generate all supported formats:
21+
22+
```
23+
npx agentify-cli transform <openapi-spec-url>
24+
```
25+
26+
Key features include:
27+
28+
- **9 output formats**: MCP Server, AGENTS.md, CLAUDE.md, .cursorrules, Skills JSON, llms.txt, GEMINI.md, A2A Card, and standalone CLI
29+
- **Tiered generation**: Automatically selects the right strategy based on API size — direct tools for small APIs (<30 endpoints), tool search and lazy loading for medium APIs (30-100), and code execution with docs search for large APIs (100+)
30+
- **Swagger 2.0 and OpenAPI 3.x**: Parses both legacy Swagger and modern OpenAPI descriptions
31+
- **Security-first**: Input sanitization of all spec fields, generated code scanning, and no eval/exec in output
32+
- **MIT licensed**: Fully open source

0 commit comments

Comments
 (0)