muppet logo
Concepts

Tools

Enable LLMs to perform actions through your server

You can think of tools as a way to enable LLMs to perform actions through your server. Tools are a powerful way to provide LLMs with access to external APIs, allowing them to perform actions and retrieve data from those APIs. These can range from doing simple task like fetching data from an API to more complex tasks like ordering food or booking a flight.

You can learn more about tools in the MCP documentation.

import { Hono } from "hono";
import { type ToolResponseType, describeTool, mValidator } from "muppet";
import z from "zod";
 
const app = new Hono();
 
app.post(
  "/hello",
  describeTool({
    name: "Hello World",
    description: "A simple hello world tool",
  }),
  mValidator(
    "json",
    z.object({
      name: z.string(),
    }),
  ),
  (c) => {
    const { name } = c.req.valid("json");
    return c.json<ToolResponseType>([
      {
        type: "text",
        text: `Hello ${name}!`,
      },
    ]);
  },
);
 

mValidator supports Standard Schema, which means you can use validation libs which supports Standard Schema like zod, valibot, arktype, typebox, etc.