The App Store for LLM Tools

Agentic is a curated marketplace of LLM tools that work with every major LLM SDK and MCP client.

Agentic tools that work everywhere

import { createAISDKTools } from '@agentic/ai-sdk'
import { AgenticToolClient } from '@agentic/platform-tool-client'
import { openai } from '@ai-sdk/openai'
import { generateText } from 'ai'

const searchTool = await AgenticToolClient.fromIdentifier('@agentic/search')

const result = await generateText({
  model: openai('gpt-4o-mini'),
  tools: createAISDKTools(searchTool),
  toolChoice: 'required',
  system: 'You are a helpful assistant. Be as concise as possible.',
  prompt: 'What is the latest news about AI?'
})

console.log(result.toolResults[0])

This example uses the @agentic/search tool to provide an LLM access to the web.

All Agentic tools are exposed as both MCP servers as well as simple HTTP APIs. MCP is important for interop and future-proofing, whereas simple HTTP POST requests make tool use easy to debug and simplifies usage with LLM tool calling.

Agentic tools are optimized for LLMs

Highly Curated

All Agentic tools have been hand-crafted specifically for LLM tool use. We call this Agentic UX, and it's at the heart of why Agentic tools work better for LLM & MCP use cases than legacy APIs.

Production-Ready MCP Support

Forget random GitHub repos and gluing local MCP servers together. Agentic tools are all battle-tested in production and come with real SLAs.

World-Class TypeScript DX

Agentic is written in TypeScript and strives for a Vercel-like DX.One-line tool integrations for all of the popular TS LLM SDKs (Vercel AI SDK, OpenAI, LangChain, etc).

Stripe Billing

Agentic uses Stripe for billing, and most tools are usage-based, so you'll only pay for what you (and your agents) actually use.

Blazing Fast MCP Gateway

Agentic's MCP gateway is powered by Cloudflare's global edge network. Tools come with customizable caching and rate-limits, so you can REST assured that your agents will always have a fast and reliable experience.

Semantic Versioning

All Agentic tools are versioned using semver, so you can choose how to handle breaking changes.

Agentic makes MCP fun!

Agentic's mission is to provide the world's best library of tools for AI agents.

And of course, MCP is an integral part of that mission. We're working on a bunch of features designed to simplify advanced MCP use cases like bundling multiple tools, shared auth profiles, Vercel-like preview deployments, and a lot more...

Publish your own MCP products with Agentic

Run one command to turn any MCP server or OpenAPI service into a paid MCP product. With built-in support for every major LLM SDK and MCP client.

Agentic is 100% Open Source

Agentic is a fully OSS TypeScript project with a small but vibrant developer community. Check out the source on GitHub or ping me on Twitter with questions / feedback.

0 stars

Level up your AI Agents with the best tools