# create_survey

Generate a professional survey using AI based on a research goal. Returns the survey ID and shareable link.

Agent View of the PolicyLayer registry record for `create_survey`. HTML page: https://policylayer.com/tools/com-getinquira-inquira/create-survey

## Facts

- Tool: `create_survey`
- Server: Inquira (`https://getinquira.com/api/mcp`) — https://policylayer.com/tools/com-getinquira-inquira.md
- Homepage: https://github.com/BayarBH/inquira-agent-plugin
- Risk category: Write (Medium risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 3 (1 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `goal` | string | yes | Describe what you want to research. E.g. 'Customer satisfaction survey for our SaaS product after onboarding' |
| `lang` | string | no | Language for the survey content. Defaults to 'en'. |
| `publish` | boolean | no | Whether to immediately publish the survey after creation. Defaults to false. |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "create_survey",
    "arguments": {
      "goal": "<goal>"
    }
  }
}
```

## Why create_survey is rated Medium

This tool creates new survey data, which is a Write operation—data is generated and persisted but remains modifiable and deletable. While surveys can influence respondents, the creation itself is not destructive or financial. Severity is medium because a misused tool could create misleading surveys or spam, but effects are reversible and confined to the survey platform.

From the tool's own definition: "Tool name is 'create_survey' and description states 'Generate a professional survey...Returns the survey ID and shareable link', indicating creation of new data (a survey object) with reversible effects."

## Use case

AI agents use create_survey to create or update resources in Inquira, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Inquira environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Inquira:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "create_survey": {
      "limits": [
        {
          "counter": "create_survey_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Inquira (5)

- `get_ai_report` — Read — https://policylayer.com/tools/com-getinquira-inquira/get-ai-report.md
- `get_responses` — Read — https://policylayer.com/tools/com-getinquira-inquira/get-responses.md
- `get_survey_link` — Read — https://policylayer.com/tools/com-getinquira-inquira/get-survey-link.md
- `get_surveys` — Read — https://policylayer.com/tools/com-getinquira-inquira/get-surveys.md
- `publish_survey` — Write — https://policylayer.com/tools/com-getinquira-inquira/publish-survey.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-getinquira-inquira · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-getinquira-inquira
