M

moss.dev

Real-time semantic search runtime that gives AI agents and apps sub-10ms on-device vector similarity search, with no external infrastructure required.

2read
1action
https://www.moss.dev/

live · Developer Tools · JSON · API for agents

Tools 3 tools

navigateaction

Navigate the current tab to a named section of moss.dev. Use this to take the user to pricing, the blog, or to external docs.

View tool JSON
{
  "name": "navigate",
  "kind": "action",
  "impl": "imperative",
  "description": "Navigate the current tab to a named section of moss.dev. Use this to take the user to pricing, the blog, or to external docs.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "section": {
        "type": "string",
        "enum": [
          "home",
          "pricing",
          "blog",
          "docs",
          "portal"
        ],
        "description": "home = /, pricing = /pricing, blog = /blog, docs = https://docs.moss.dev, portal = https://portal.usemoss.dev"
      }
    },
    "required": [
      "section"
    ]
  }
}
get-pricingread

Return the current Moss subscription tiers with monthly price and included features. Use when the user asks how much Moss costs or which tier they need.

View tool JSON
{
  "name": "get-pricing",
  "kind": "read",
  "impl": "imperative",
  "description": "Return the current Moss subscription tiers with monthly price and included features. Use when the user asks how much Moss costs or which tier they need.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
get-install-commandread

Return the SDK install command for Moss in the requested language. Use when the user asks how to install or add Moss to their project.

View tool JSON
{
  "name": "get-install-command",
  "kind": "read",
  "impl": "imperative",
  "description": "Return the SDK install command for Moss in the requested language. Use when the user asks how to install or add Moss to their project.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "language": {
        "type": "string",
        "enum": [
          "javascript",
          "typescript",
          "python"
        ]
      }
    },
    "required": [
      "language"
    ]
  }
}