惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
B
Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
L
LangChain Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Expose Your App to AI Agents in 30 Minutes: A MCP Integra...
Aiden (Yiliu · 2026-05-06 · via DEV Community

The Problem Nobody Talks About

You've built a solid application. Now an AI agent (Claude, Cursor, or any MCP-compatible assistant) wants to use it.

What do you do?

Most developers end up writing:

  • A custom MCP server
  • JSON-RPC handlers
  • Schema definitions
  • CLI wrappers
  • OpenAI tool definitions

That's three separate integrations for the same capability — each with its own quirks, validation logic, and maintenance burden.

Sound familiar? That's exactly the problem Ageniti was built to solve.

The Core Idea: Define Once, Expose Everywhere

With Ageniti, you define a typed action once, and it automatically generates:

  • An MCP tool server
  • A CLI with flags and JSON output
  • OpenAI-compatible tool schema
  • Vercel AI SDK tool definitions

All from one contract. One source of truth.

Let's Build Something Real

Let's say you have a function that searches your product database. Here's how you'd expose it to everything.

Step 1: Define the Action

import { action, runtime } from '@ageniti/core';

// Define your action with typed inputs and outputs
const searchProducts = action({
  id: 'search-products',
  description: 'Search product catalog by keyword',
  input: z.object({
    query: z.string().describe('Search query'),
    limit: z.number().optional().default(10),
  }),
  handler: async ({ query, limit }) => {
    // Your existing business logic
    return await productService.search({ query, limit });
  },
});

Enter fullscreen mode Exit fullscreen mode

Step 2: Generate Surfaces

// MCP Server (for Claude, Cursor, etc.)
import { createMCPServer } from '@ageniti/mcp';
const server = createMCPServer([searchProducts]);
// Run with: node server.js

// CLI (for terminal workflows)
import { createCLI } from '@ageniti/cli';
const cli = createCLI([searchProducts]);
// Run with: ageniti search-products --query "shoes"

// OpenAI Tools (for AI SDK integrations)
import { toOpenAITools } from '@ageniti/openai';
const tools = toOpenAITools([searchProducts]);
// Use with: OpenAI.chat.completions.create({ tools })

Enter fullscreen mode Exit fullscreen mode

Same action. Three surfaces. Zero duplication.

Why This Matters

Here's what you'd normally need to maintain:

Concern Hand-written With Ageniti
Input validation Custom per-surface Shared, typed
Error handling Duplicated One place
Schema sync Manual Automatic
CLI parsing Custom flags Generated
MCP protocol Custom server Drop-in

Every new capability you add only needs one definition instead of three separate implementations.

The Runtime Layer

Behind the scenes, every action runs through a shared runtime that handles:

  • Validation — Zod schemas, always enforced
  • Authorization — Run hooks before execution
  • Timeouts & Retries — Configurable per-action
  • Structured Output — Consistent response shapes
  • Logging — Built-in action execution logs
const searchProducts = action({
  // ... definition
  runtime: {
    timeout: 5000,
    retries: 2,
    hooks: {
      before: async (ctx) => {
        if (!ctx.user.canSearch) {
          throw new UnauthorizedError();
        }
      },
    },
  },
});

Enter fullscreen mode Exit fullscreen mode

What's Actually Different

Ageniti isn't another AI framework or orchestration layer. It doesn't plan, reason, or replace your app.

It's specifically the integration layer — the plumbing between your product and the agents that need to call it.

Think of it like:

  • prisma for your database schema → you're writing actions
  • react-query for your API state → you're using the runtime
  • zod for your validation → you're getting type safety

You keep your app architecture exactly as-is. You just add a thin wrapper to expose it safely.

Getting Started

npm install @ageniti/core

Enter fullscreen mode Exit fullscreen mode

Then check out the Getting Started guide for a complete walkthrough.

The bootstrap file also works directly with coding agents — feed BOOTSTRAP.md to Cursor or Claude Code and it will clone, set up, and walk through your first action.

The Real Win

The goal isn't to use Ageniti. The goal is to have your application actually work with the AI ecosystem without spending weeks on integration boilerplate.

Every action you define is infrastructure that pays off every time you add a new surface — MCP, CLI, OpenAI tools, whatever comes next.

If you've been building around AI agents and feeling the pain of integration sprawl, I'd love to hear what's blocking you.