← All WebMCP sites

runtype.com

Developer Toolshttps://www.runtype.com/listed as of 2026-07-15
Runtype is an AI product platform for building and deploying AI experiences — agents, flows, and chatbots — across web chat, Slack, email, and API. Its WebMCP tools let an agent search the blog and changelog, browse deployable example products, recommend a pricing plan, and navigate the site.
See Ora's auditWe loaded this site in a real browser and scored its tools. Score: 57/100 (C).

Tools

search_contentanswerimperative
Full-text search across Runtype's blog posts and product changelog. Use to find announcements, recently shipped features, fixes, and explainer articles. Returns titles, summaries, dates, and links — not full article bodies.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search keywords, e.g. \"slack agent\" or \"evals\"."
    },
    "source": {
      "type": "string",
      "enum": [
        "all",
        "blog",
        "changelog"
      ],
      "description": "Which content to search. Defaults to \"all\"."
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false
}
list_examplesanswerimperative
List the published example products on Runtype.com — real, deployable templates (e.g. invoice extraction, fraud analysis, chat agents) showing what can be built. Returns each example's slug, title, tagline, category, tags, link, and a count of its surfaces/flows/agents/tools. Use get_example for the full walkthrough.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_exampleanswerimperative
Fetch the full detail of one example product by its slug: what it is built from (surfaces, flows, agents, tools), its evals and metrics, and a long-form Markdown walkthrough. Use list_examples first to discover valid slugs.
Input schema
{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "The example slug, e.g. \"invoice-artisan\"."
    }
  },
  "required": [
    "slug"
  ],
  "additionalProperties": false
}
recommend_planactimperative
Recommend the right Runtype pricing plan for a described workload. Surfaces are unlimited on every plan, so the decision turns on usage and features: provide expected monthly executions, whether they want to bring their own model keys (BYOK), and whether they're just building or shipping to production. Returns the recommended tier, price, sign-up link, and the reasons.
Input schema
{
  "type": "object",
  "properties": {
    "monthlyExecutions": {
      "type": "number",
      "description": "Estimated executions per month (the usage-based pricing metric)."
    },
    "needsByok": {
      "type": "boolean",
      "description": "True if the visitor wants to bring their own model API keys."
    },
    "environment": {
      "type": "string",
      "enum": [
        "development",
        "production"
      ],
      "description": "\"development\" = just building/testing, \"production\" = shipping to real users."
    }
  },
  "additionalProperties": false
}
navigate_toactimperative
Move the page to a section of Runtype.com so the visitor can see what you are describing. Use a named destination, or a detail destination with a slug (e.g. {"destination":"example","slug":"invoice-artisan"}). "signup" sends the visitor to create an account.
Input schema
{
  "type": "object",
  "properties": {
    "destination": {
      "type": "string",
      "enum": [
        "home",
        "pricing",
        "examples",
        "blog",
        "changelog",
        "surfaces",
        "works-with",
        "products",
        "platform",
        "security",
        "about",
        "careers",
        "support",
        "example",
        "blog-post",
        "changelog-entry",
        "surface",
        "signup"
      ],
      "description": "Where to navigate."
    },
    "slug": {
      "type": "string",
      "description": "Required for detail destinations (example, blog-post, changelog-entry, surface)."
    }
  },
  "required": [
    "destination"
  ],
  "additionalProperties": false
}
Listings are sourced from public community registries and shown as reported.