
LimeSurvey
โ 5from edgarrmondragon
Manage surveys and responses in your LimeSurvey instance.
โ labsco summary โ our analysis, not the vendor's
What it is โ an MCP server for managing surveys and responses in your LimeSurvey instance.
What you get โ
- Manage LimeSurvey surveys and their responses through an MCP client โ "list my surveys and summarize responses"
- A simple server wrapping LimeSurvey's RemoteControl API
Requirements โ a LimeSurvey instance and credentials: LIMESURVEY_URL (pointing at /admin/remotecontrol), LIMESURVEY_USERNAME and LIMESURVEY_PASSWORD.
Cost snapshot โ free and open source (Apache-2.0). LimeSurvey itself is open source (self-hostable) or offered as a paid hosted service โ you supply your own instance.
Setup effort โ run via uv --directory /path/to/limesurvey-mcp run main.py in your MCP client config with the three env vars.
Our take โ a straightforward option if you already run LimeSurvey and want conversational access; the README is thin on specific tools, and you'll need the RemoteControl API enabled with valid admin credentials for it to work.
Source: the project README โ summarized 2026-07-08.
โ readme from github โ mirrored (latest on GitHub โ)
LimeSurvey MCP Server
This is an MCP server for LimeSurvey. It is a simple server that allows you to manage your LimeSurvey surveys and responses.
Using with MCP clients
{
"mcpServers": {
"limesurvey-mcp": {
// For example, /Users/<YOUR USERNAME>/.local/bin/uv
"command": "/path/to/uv",
"args": [
"--directory",
// For example, /Users/<YOUR USERNAME>/mcp-servers/limesurvey-mcp
"/path/to/limesurvey-mcp",
"run",
"main.py"
],
"env": {
// see config above
// "LIMESURVEY_URL": "https://myinstance.limequery.com/admin/remotecontrol"
// "LIMESURVEY_USERNAME": "myusername"
// "LIMESURVEY_PASSWORD": "mypassword"
}
}
}
}{
"mcpServers": {
"limesurvey-mcp": {
// For example, /Users/<YOUR USERNAME>/.local/bin/uv
"command": "/path/to/uv",
"args": [
"--directory",
// For example, /Users/<YOUR USERNAME>/mcp-servers/limesurvey-mcp
"/path/to/limesurvey-mcp",
"run",
"main.py"
],
"env": {
// see config above
// "LIMESURVEY_URL": "https://myinstance.limequery.com/admin/remotecontrol"
// "LIMESURVEY_USERNAME": "myusername"
// "LIMESURVEY_PASSWORD": "mypassword"
}
}
}
}Before it works, you'll need: LIMESURVEY_URLLIMESURVEY_USERNAMELIMESURVEY_PASSWORD
Configuration
| Name | Description |
|---|---|
| LIMESURVEY_URL | The URL of your LimeSurvey instance, e.g. https://myinstance.limequery.com/admin/remotecontrol |
| LIMESURVEY_USERNAME | Your LimeSurvey username |
| LIMESURVEY_PASSWORD | Your LimeSurvey password |
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under Apache-2.0โ you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub โ