live · Developer Tools · JSON · API for agents
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.
{
"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"
]
}
}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.
{
"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": {}
}
}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.
{
"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"
]
}
}