{
  "markdown": "# Inquira Agent Plugin\n\nLet your AI agent create, publish, and analyze surveys with **[Inquira](https://getinquira.com)** — an AI-powered survey platform. This repo packages Inquira's remote **MCP (Model Context Protocol)** server as a plugin for OpenAI Codex, plus drop-in configs for Claude, Cursor, and any MCP-compatible client.\n\nInquira is published in the official **MCP Registry** as [`com.getinquira/inquira`](https://registry.modelcontextprotocol.io/v0.1/servers?search=com.getinquira).\n\n## What is Inquira?\n\nInquira turns a one-sentence research goal into a professional survey, collects responses through a shareable link, and generates an AI analysis report — executive summary, key metrics, per-question insights, and prioritized recommendations. Through this plugin, an agent can do all of that for you in natural language.\n\nAsk your agent things like:\n\n- \"Create a customer satisfaction survey for our SaaS onboarding and publish it\"\n- \"Create a 10-question NPS survey in Japanese and give me the link\"\n- \"Show me the responses for my latest survey\"\n- \"Generate an AI analysis report for my survey\"\n\n## Requirements\n\n- An [Inquira](https://getinquira.com) account (the free plan works)\n- An Inquira API key — in the app, open **Developer** from your account menu and create a key (keys look like `sk-inquira-...`)\n- An agent with MCP or plugin support (Codex, Claude Desktop, Cursor, …)\n\n## Available tools\n\n| Tool | Description |\n|---|---|\n| `create_survey` | Generate a professional survey from a research goal with AI (5 languages, optional auto-publish). Returns the survey ID and shareable link. |\n| `get_surveys` | List the surveys belonging to your account (filter by status). |\n| `publish_survey` | Publish a draft survey so it accepts responses via its share link. |\n| `get_survey_link` | Get the shareable link for a published survey. |\n| `get_responses` | Fetch the responses submitted to a survey. |\n| `get_ai_report` | Generate an AI analysis report: executive summary, key metrics, per-question insights, and action recommendations. |\n\nFull MCP & API documentation: <https://getinquira.com/docs/mcp>\n\n## Install\n\n### Codex (as a plugin)\n\n1. Clone this repository (or point Codex at the repo URL if your version supports installing plugins from a URL).\n2. Open `inquira/.mcp.json` and replace `YOUR_INQUIRA_API_KEY` with your key. Treat your local copy as private — never commit a real key. For a keyless setup, use the plain-MCP install below.\n3. Install the `./inquira` plugin folder in Codex.\n\n### Codex (plain MCP, no plugin)\n\n**1. Store your API key as an environment variable** so it stays out of config files and chat logs:\n\n```powershell\n# Windows (PowerShell) — then restart your terminal:\nsetx INQUIRA_API_KEY \"sk-inquira-xxxxxxxxxxxxxxxx\"\n```\n\n```bash\n# macOS / Linux — add to your shell profile:\nexport INQUIRA_API_KEY=\"sk-inquira-xxxxxxxxxxxxxxxx\"\n```\n\n**2. Add to `~/.codex/config.toml`** (or a project-scoped `.codex/config.toml`), then restart Codex:\n\n```toml\n[mcp_servers.inquira]\nurl = \"https://getinquira.com/api/mcp\"\nbearer_token_env_var = \"INQUIRA_API_KEY\"\n```\n\nIf your Codex version doesn't support `bearer_token_env_var`, fall back to an inline header (less safe — the key lives in the config file):\n\n```toml\nhttp_headers = { Authorization = \"Bearer sk-inquira-...\" }\n```\n\n### Claude Desktop / Cursor / other MCP clients\n\n```json\n{\n  \"mcpServers\": {\n    \"inquira\": {\n      \"url\": \"https://getinquira.com/api/mcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer sk-inquira-YOUR_KEY\"\n      }\n    }\n  }\n}\n```\n\n## What's in this repo\n\n```\n.agents/plugins/marketplace.json     Marketplace manifest\ninquira/\n  .codex-plugin/plugin.json          Plugin metadata\n  .mcp.json                          MCP server config (add your API key here)\n  assets/logo.png                    Logo\n  skills/                            Workflow skills for the agent\n```\n\n## How it works\n\nThe plugin points your agent at Inquira's remote MCP server over Streamable HTTP at `https://getinquira.com/api/mcp`. Every request carries your API key as an `Authorization: Bearer` header. The server exposes the six tools above; your agent calls them to create, publish, and analyze surveys on your Inquira account.\n\n## Links\n\n- Website: <https://getinquira.com>\n- MCP & API docs: <https://getinquira.com/docs/mcp>\n- Guide — connect Inquira to Claude: <https://getinquira.com/guides/connect-inquira-to-claude-mcp>\n- Official MCP Registry entry: `com.getinquira/inquira`\n\n## License\n\nMIT\n",
  "bytes": 4510,
  "sha": "d04313e3ef5acf293ac00a6fc3cfd0969ad623c02870a7f06fe49ee4f846a281",
  "repo_slug": "bayarbh/inquira-agent-plugin",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_com_getinquira_inquira_3870e0cd/readme"
}