Getting Started with Shopigent Returns
Quick Start
- Install Shopigent Returns from the Shopify App Store
- Create your first return policy
- Connect an AI agent via MCP
- Let it handle returns automatically
1. Installation
Install the app from the Shopify App Store. After installation, you'll be redirected to the app dashboard.
2. Choose Your Plan
The app offers three plans:
| Plan | Price | Best For |
|---|---|---|
| Free | $0 | Testing with up to 10 returns/month |
| Growth | $9.99/mo | Automated returns with fraud detection |
| Pro | $29/mo | Full automation with labels and exchanges |
You can upgrade, downgrade, or cancel anytime from the Billing page.
3. Create a Policy
- Go to Policies in the app navigation
- Click Add Policy
- Set conditions (max days, max amount, auto-approve)
- Enable the policy
Policies define which returns are auto-approved by the AI agent. Example:
Policy: Standard 30-Day Return
- Max days: 30
- Max amount: $200
- Auto-approve: ✅
- Restocking fee: 0%
4. Customer Return Portal
Your customers can submit returns at: https://returns.greeknous.com/return
They enter their email, receive an OTP, select items to return, and submit.
5. Connect AI Agents via MCP
Generate an MCP API key from Settings → MCP Server. Then configure your AI agent:
Claude Desktop
{
"mcpServers": {
"shopigent-returns": {
"url": "https://returns.greeknous.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_MCP_KEY"
}
}
}
}
Codex Desktop
Type: Streamable HTTP
URL: https://returns.greeknous.com/api/mcp
Headers: Authorization: Bearer YOUR_MCP_KEY
6. Confirmation Gate (Security)
Destructive operations (approve/deny returns) require a two-step confirmation:
- First call
issue_confirmation_tokento get a signed HMAC token - Include the token as
confirmationTokenin the actualapprove_returnordeny_returncall
Tokens expire after 5 minutes and are bound to specific arguments.
7. Email Notifications
Every email includes:
- Sender:
shopigent@greeknous.com— with your store name in the display - Logo: Branded Shopigent Returns logo at the top of every email
- Types: Return received confirmation, approval (with refund amount), denial (with reason), refund processed, shipping label
8. Plan-Based Access
| Plan | Tools Available |
|---|---|
| Free | Read-only: analyze, check fraud, list tools |
| Growth | Approve, deny, refund, email notifications, analytics |
| Pro | Exchange workflow, label generation, SMS alerts, advanced fraud rules |