Show summary
Purpose
Explain how to install and connect the local KlickTipp MCP server so an AI coding assistant can use KlickTipp tools safely.
Required Endpoints
POST /account/loginGET /tagGET /list
Decision Rules
- Use the ready-made KlickTipp MCP server for standard local AI tooling workflows.
- Keep the initial setup read-only until login and metadata inspection work reliably.
Failure Handling
- Verify the repository path, runtime, MCP client configuration, and local .env placement before retrying.
- Do not enable write tools until the read-only checks succeed.
Known Limits
- This setup depends on a local machine, local .env handling, and an MCP-capable client.
- Username and password setup is not the right model for partner-grade multi-tenant integrations.
Related Docs
Use this guide to connect your local AI assistant such as Claude or Codex to your KlickTipp account through a local MCP server. This lets your agent inspect KlickTipp structures, work with KlickTipp Management API tools, and help you manage your contacts faster.
Prepare the following before you start:
- Access to a KlickTipp account with username & password
- Installed local agent like Claude Code or local Codex clients
You do not need to manually check every technical requirement for the installation upfront. Your AI coding assistant should read the MCP server repository and check the current requirements for you.
Follow this simple recommended setup to use a KlickTipp Connection in your Coding Agent.
Open a new chat in Claude or Codex to install the binary KlickTipp MCP.
Paste this prompt:
Please set up the KlickTipp MCP server from the published release:
https://github.com/klicktipp/klicktipp-mcp-binaryApprove only the actions needed to read and clone the repository, create the local .env file, and run read-only tests. Do not approve publishing, committing, deleting files, or enabling write tools during setup.
If your agent supports local permission rules, add a deny rule for .env before filling in credentials so the agent cannot read or print that file later. Keep the rule narrow so .env.example stays readable.
After the Installation, check the settings and your connection to KlickTipp.
The .env file is your local settings file. The KlickTipp MCP server uses it to read your KlickTipp username and password. For safety, open this file yourself and enter your credentials manually outside the AI chat session.
- Open the created
.envfile yourself in your local editor. Do not ask the AI assistant to open the file after credentials have been added.
Show me the path to the generated .env file. Do not print the file contents.- Do not replace the whole file. Enter username & password directly into the local
.envfile. Do not paste KlickTipp credentials into the chat.
KT_AUTH_MODE=session
KT_USERNAME=your-klicktipp-username
KT_PASSWORD=your-klicktipp-password- Save your changes in the
.envfile.
Keep this file local. Do not commit .env to Git.
The repository already keeps .env out of Git and documents the same setup guardrails in AGENTS.md.
After the connection is configured, restart your AI assistant and open a new chat.
Test the connection via some example Prompts:
List my KlickTipp tags.List my KlickTipp fields.List my KlickTipp opt-in processes.If these read-only tests fail, fix the setup before enabling any write tools.
Enable the write tools only after read-only tools work. Write tools can change data in your KlickTipp account. Keep destructive tools disabled.
Update setting KT_ENABLE_WRITES in the .env file and save your changes:
KT_TOOL_MODE=full
KT_ENABLE_WRITES=true
KT_ENABLE_DESTRUCTIVE=falseRestart your AI coding assistant after changing .env.
If the AI assistant cannot start the MCP server, ask it:
Please inspect the MCP server logs, verify node -v and npm -v, check the .env file, and confirm that the MCP client points to the correct absolute path.If authentication fails, check:
KT_AUTH_MODE=sessionKT_USERNAMEKT_PASSWORD- Whether the account can log in normally
- Whether the
.envfile is in the MCP server repository folder
The binary KlickTipp MCP server is the recommended setup for most users.
Build your own MCP server only if the KlickTipp API documentation has changed, the binary server does not support the API tools you need, or you want to experiment with a custom implementation.
Paste following Prompt in a new chat and start building:
Build a local MCP server for KlickTipp from the current KlickTipp developer documentation.
Use these sources as the source of truth:
- https://developers.klicktipp.com/guides
- https://developers.klicktipp.com/management-api
- https://developers.klicktipp.com/guides/management-api-authentication
- https://developers.klicktipp.com/guides/management-api
For partner, production, or customer-facing multi-account integrations, do not use username/password setup. Use Developer Key plus Customer Key authentication instead: Management API authentication.