How To Connect Claude Desktop, Cursor, or GitHub Copilot to Your Tricknowtech Account via MCP
Goal
In this tutorial, you will generate a Tricknowtech API token and connect it to an MCP-compatible AI assistant, so the assistant can call any of the 39 tools exposed by the Tricknowtech MCP server on your behalf — managing domains, hosting, VPS, billing, email, and WhatsApp in plain English.
Prerequisites
- A Tricknowtech account (create one free at tricknow.tech/register if you don't have one)
- One of: Claude Desktop, Cursor, or GitHub Copilot installed and signed in
- 5 minutes
Let an AI agent do this for you
Copy a ready-made prompt for an AI coding assistant with terminal access to your server (Claude Code, Cursor, or similar) — it can carry out the steps below for you. Review what it plans to run before it executes anything.
Step 1 — Generate an API token
The Tricknowtech MCP server authenticates using a personal API token tied to your account — this is what lets your AI assistant act as you.
- Log in to your Tricknowtech dashboard.
- Go to Profile → API Tokens (or navigate directly to /dashboard/profile?tab=tokens).
- Click "Go to API Tokens" and generate a new token.
- Copy the token immediately — it's shown only once.
“Treat this token like a password. Anyone with it can act on your account through any MCP-compatible client.”
Step 2 — Note the MCP server URL
The Tricknowtech MCP server runs in HTTP mode at a single fixed URL, the same one for every customer — only the bearer token in your config differs.
https://mcp.tricknow.tech/mcpStep 3 — Configure your client
Claude Desktop
Open your Claude Desktop config file — on macOS this is ~/Library/Application Support/Claude/claude_desktop_config.json, on Windows it's %APPDATA%\Claude\claude_desktop_config.json — and add the tricknowtech server entry:
{
"mcpServers": {
"tricknowtech": {
"command": "node",
"args": ["/path/to/mcp/dist/index.js"],
"env": {
"TRICKNOWTECH_API_TOKEN": "YOUR_API_TOKEN_HERE"
}
}
}
}Replace YOUR_API_TOKEN_HERE with the token from Step 1, and /path/to/mcp with the actual path to the MCP server package. Restart Claude Desktop after saving.
Cursor
In Cursor, go to Settings → Features → MCP Servers, and add the server using the HTTP URL from Step 2 with your token as a Bearer header:
{
"name": "Tricknowtech",
"url": "https://mcp.tricknow.tech/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN_HERE"
}
}Tricknowtech Tricknowtech MCP
Connect Claude, Cursor, or GitHub Copilot to your account and manage everything in plain English.
Ready to try it yourself?
Create a free account and follow along.