https://github.com/edgarrmondragon/limesurvey-mcp
A MCP (Model Context Protocol) server for interacting with LimeSurvey.
https://github.com/edgarrmondragon/limesurvey-mcp
limesurvey llm mcp-server model-context-protocol survey-analysis
Last synced: 28 days ago
JSON representation
A MCP (Model Context Protocol) server for interacting with LimeSurvey.
- Host: GitHub
- URL: https://github.com/edgarrmondragon/limesurvey-mcp
- Owner: edgarrmondragon
- License: apache-2.0
- Created: 2025-04-26T01:14:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-08-08T03:54:16.000Z (about 2 months ago)
- Last Synced: 2025-08-28T23:46:16.677Z (about 1 month ago)
- Topics: limesurvey, llm, mcp-server, model-context-protocol, survey-analysis
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - edgarrmondragon/limesurvey-mcp
- awesome-mcp-servers - **limesurvey-mcp** - A MCP (Model Context Protocol) server for interacting with LimeSurvey. `http` `ml` `git` `github` `python` `pip install git+https://github.com/edgarrmondragon/limesurvey-mcp` (Other)
- awesome-mcp-servers - **limesurvey-mcp** - A MCP (Model Context Protocol) server for interacting with LimeSurvey. `http` `ml` `git` `github` `python` `pip install git+https://github.com/edgarrmondragon/limesurvey-mcp` (Other)
- mcp-index - LimeSurvey Survey Management Server - Manage surveys and responses from a LimeSurvey instance through a standardized MCP interface, enabling automation of survey handling and data retrieval. (Cloud Services)
README
# 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.
[](https://mseep.ai/app/edgarrmondragon-limesurvey-mcp)
## 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 |## Using with MCP clients
```json
{
"mcpServers": {
"limesurvey-mcp": {
// For example, /Users//.local/bin/uv
"command": "/path/to/uv",
"args": [
"--directory",
// For example, /Users//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"
}
}
}
}
```