Jampp MCP Server is a server that provides access to the Jampp Reporting API through the Model Context Protocol, enabling LLMs to fetch campaign performance data.
To use the Jampp MCP Server, clone the repository, install the necessary dependencies, set up your environment variables with your Jampp API credentials, and run the server using Python.
Use these steps to connect Jampp MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"jampp-mcp-server-springwq": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jampp-mcp-server-springwq"
]
}
}
}Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"jampp-mcp-server-springwq": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jampp-mcp-server-springwq"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"jampp-mcp-server-springwq": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jampp-mcp-server-springwq"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
You need Python 3.10 or higher and Jampp API credentials (Client ID and Client Secret).
Clone the repository, install dependencies using pip, and set up your environment variables.
Yes! You can configure Claude Desktop to use the Jampp MCP Server for reporting.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":2609,"uuid":"5656b07e-7509-4a55-a780-6ca4ad7f92aa","name":"jampp_mcp_server","title":"Jampp MCP Server","description":"","avatar_url":"https://avatars.githubusercontent.com/u/2961548?v=4","created_at":"$D2025-03-13T09:08:12.976Z","updated_at":"$D2025-03-13T09:41:27.686Z","status":"created","author_name":"springwq","author_avatar_url":"https://avatars.githubusercontent.com/u/2961548?v=4","tags":"jampp,mcp-server,reporting-api","category":"research-and-data","is_featured":false,"sort":1,"url":"https://github.com/springwq/jampp_mcp_server","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":"{\"star\":\"0\",\"license\":\"\",\"language\":\"Python\",\"is_official\":false,\"latest_commit_time\":\"2025-03-11 05:02:25\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
{
"servers": {
"jampp-mcp-server-springwq": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jampp-mcp-server-springwq"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"jampp-mcp-server-springwq": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jampp-mcp-server-springwq"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"jampp-mcp-server-springwq": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jampp-mcp-server-springwq"
]
}
}
}