You're viewing a demo portfolio

Join the waitlist
PRSM

create_survey

Active

Tool of FavCRM

declared in 1.0.0

Create a survey with custom question blocks. Publish it later or set status to published for immediate portal access.

Parameters schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "title",
    "questionBlocks"
  ],
  "properties": {
    "slug": {
      "type": "string",
      "description": "Optional URL slug; generated from title when omitted"
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "description": "Survey title"
    },
    "openAt": {
      "type": "string",
      "description": "Optional ISO datetime when the survey opens"
    },
    "status": {
      "enum": [
        "draft",
        "published",
        "closed",
        "archived"
      ],
      "type": "string",
      "description": "Initial status"
    },
    "closeAt": {
      "type": "string",
      "description": "Optional ISO datetime when the survey closes"
    },
    "settings": {
      "type": "object",
      "description": "Survey settings such as allowMultipleResponses, collectEmail, collectIpAddress, requireAuthentication, showProgress, successMessage",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    },
    "visibility": {
      "enum": [
        "public",
        "members_only",
        "token_only",
        "private"
      ],
      "type": "string",
      "description": "Who can access the survey"
    },
    "description": {
      "type": "string",
      "description": "Optional survey description"
    },
    "questionBlocks": {
      "type": "array",
      "items": {
        "type": "object",
        "propertyNames": {
          "type": "string"
        },
        "additionalProperties": {}
      },
      "description": "Ordered survey question blocks"
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

FavCRM

https://github.com/favcrm/mcp

1/7 registries
View full server →