Connect instxnt to Claude, ChatGPT, and Gemini. Create stores through natural language.
Say "make me a storefront selling handmade candles for $25" and the AI handles everything.
Step 1
Generate a free API key from your dashboard. This key authenticates all AI tool calls.
Go to Developer SettingsStep 2
Add to ~/.claude/settings.json (Claude Code) or Claude Desktop config:
{
"mcpServers": {
"instxnt": {
"command": "npx",
"args": ["-y", "@instxntdotxyz/mcp-server"],
"env": {
"INSTXNT_API_KEY": "inst_your_key_here"
}
}
}
}claude mcp add instxnt -- npx -y @instxntdotxyz/mcp-server
Then set your API key when prompted.
The instxnt Store Builder GPT uses the same API key for authentication. Available in the GPT Store.
Google adopted MCP — the same server works with Gemini clients that support MCP.
Step 3
Once connected, just describe what you want to sell. The AI orchestrates the full flow:
Reference
15 tools the AI can call on your behalf:
Stores
create_storeCreate an AI-powered storefront from a product descriptioncheck_generation_statusPoll store generation progresslist_storesList all your storesget_storeGet store details, Stripe status, analyticspublish_storeMake a store live at {subdomain}.instxnt.storeupdate_storeUpdate subdomain or custom domaincheck_subdomainCheck if a subdomain is availableProducts
add_productAdd a product to a storelist_productsList all products in a storeupdate_productUpdate product name, price, or descriptiondelete_productRemove a productPayments
get_stripe_connect_urlGet Stripe onboarding link for the usercheck_stripe_statusVerify Stripe is connected and readyAnalytics
get_store_analyticsViews, sales, revenue, conversion rateAccount
get_accountGet authenticated user info and tierSecurity
All API calls use your developer token (inst_xxx) passed as a Bearer token. The MCP server reads this from the INSTXNT_API_KEY environment variable.
Tokens are free to create. Each account can have up to 5 active tokens. Tokens can be scoped to specific permissions and set to expire.
Stripe Connect requires the user to click a link and complete onboarding in their browser. The AI will provide the link and verify completion — this step cannot be fully automated.
Install
npm install -g @instxntdotxyz/mcp-server
Open source on GitHub. Contributions welcome.