← WebMCP Directory

Tool tree

moss.dev

liveDeveloper Tools
https://www.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.
Explore capabilities
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": "act",
  "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"
    ]
  },
  "page": "/foundingagent"
}
get-pricingAnswer

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": "answer",
  "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": {}
  },
  "page": "/foundingagent"
}
get-install-commandAnswer

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": "answer",
  "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"
    ]
  },
  "page": "/foundingagent"
}