The Business Day That Fits Inside One Conversation
Running a small business is not one big problem. It is dozens of small ones, most solvable in under a minute, each one requiring you to be in a different place when it shows up. WhatsApp lives on the phone. Invoices live in the hosting panel. The domain sits with the registrar. The code lives in an editor. None of these tasks are hard by themselves. The tax is the switching — closing one tab, logging into another, finding the right screen, doing the two-minute thing, then starting the next hunt.
Tricknowtech's MCP server changes where those two-minute things happen: not in a new tab, but inside whatever conversation you're already having with an AI assistant — Claude Desktop, Cursor, GitHub Copilot, anything that speaks MCP. One API token, generated once from the account's profile settings, connects the assistant to the account and hands it 39 tools spanning domains, hosting, VPS, billing, email, WhatsApp, and app deployment. Here's what that looks like across an ordinary day for someone running a small online store.
Before the shop opens
She checks her phone before getting out of bed, the way most people running a store do, and there's a WhatsApp message from a customer asking if a product is back in stock. The normal path is: open the laptop, log into the WhatsApp Business dashboard, find the conversation, type a reply. Instead, she's already got Claude Desktop open with her coffee, and she just says what she wants done.
“"Reply to the WhatsApp message asking about the ceramic mugs — yes, back in stock, ships in 2 days."”
The assistant sends it straight from the conversation with send_whatsapp_text. For the ones that follow a fixed script instead — an order confirmation, a delivery update — list_whatsapp_templates and send_whatsapp_template are there for that. Either way, the reply goes out from the same window she was already typing in. No dashboard, no login.
Mid-morning, a parcel goes out
An order gets packed and handed to the courier, and the customer needs a shipping confirmation with the tracking number. This is normally its own small trip — a separate email tool, a separate login, a template to find. She just tells the assistant to send it: subject, tracking number, done. It calls send_email, using a saved shipping-confirmation template from list_email_templates against the store's verified sending domain from list_email_domains. It's the same conversation as the WhatsApp reply twenty minutes earlier, just a different kind of message.
Midday, a nagging question about a domain
Sometime around lunch she remembers, vaguely, that a domain renewal might be coming up — one of those facts that lives in the back of your head and never quite surfaces at the right time. Instead of opening the registrar's portal to go check, she just asks. The assistant runs list_domains, finds the one she's thinking of, checks its expiry with get_domain_info. It's due in a couple of weeks. She says renew it, and renew_domain handles it. The whole exchange takes about as long as the question did.
Before she says yes to a purchase
Traffic's been climbing and she's been putting off deciding whether to upgrade the hosting plan. Before committing money to anything, she wants to know what's actually in the wallet and whether anything is sitting unpaid — the kind of check that normally means digging through a billing section she only opens once a month. She asks in the same breath as the decision she's trying to make.
“"Before I upgrade hosting, what's my wallet balance, and do I have any unpaid invoices?"”
get_wallet_balance and list_invoices answer both questions at once, with get_invoice available if one of them needs a closer look. With that in front of her, in the same message where she asked the question, she decides to go ahead — list_hosting_plans to see the options, then purchase_hosting to commit. The financial check and the purchase decision happen as one continuous exchange instead of two separate errands.
Evening, one more fix before dinner
Late in the day she's back in her code editor — Cursor, in this case — fixing a small bug where one product page is showing the wrong price. The fix itself is a few lines. Normally, shipping it means switching out of the editor entirely, over to the Tricknowtech dashboard, finding the app, and triggering a deploy by hand. Because the app is already connected to its GitHub repo through connect_github, and Cursor is talking to the same MCP server, she doesn't have to leave the editor to trigger anything. She commits the fix and tells the assistant to ship it. It confirms which app with list_apps, then calls deploy_app. If the fix needed a changed environment variable too, set_app_env_vars would have handled that in the same request. The deploy happens without her context ever leaving the code.
What actually changed
Across the day she didn't open the Tricknowtech dashboard once for any of this. None of the five things were individually hard — a stock reply, a shipping email, an expiry check, a balance check, a deploy command are each things a dashboard is perfectly capable of doing. What's different is that none of them required a trip. No new tab, no re-login, no hunting through a menu for the right page. Roughly, the tools involved break down like this:
- Account — profile, wallet balance, referral info
- Domains — search, list, renew
- Hosting and VPS — plans, purchases, running instances
- Billing — invoices
- Email — sending, templates, verified domains
- WhatsApp — messages, templates
- App deployment — deploy, environment variables, GitHub connections
None of this replaces the dashboard for the things you actually want to look at — a graph of traffic over the month, the full list of open support tickets, the shape of a quarter of invoices side by side. What it removes is the fifteen small trips in between, the ones that exist only because the task and the interface happened to live in different places. The task turns into a sentence, inside a conversation you were already having anyway.
Tricknowtech Tricknowtech MCP
Connect Claude, Cursor, or GitHub Copilot to your account and manage everything in plain English.
Ready to connect your assistant?
Create a free account and generate an API token in under two minutes.