TaskerArmy Agent
What is TaskerArmy Agent?
What it can do
- Get Pending Optimization Tasks: Returns the tenant's open Shopify theme optimization tasks — changes the TaskerArmy agent has proposed that are still awaiting review, QA, or approval before going live
What data it sees
Do you need an account
An API key from the service settings is required
What is TaskerArmy Agent?
TaskerArmy Agent is a Shopify optimization platform: describe a theme change in plain English, and an AI agent reads your theme files, plans the work, writes the code, runs automated QA, and deploys to a staging copy of your theme — your live store is never touched until you approve.
What this MCP server does
This remote MCP server lets you connect Claude or ChatGPT directly to your TaskerArmy account and ask things like:
"What optimization tasks are pending on my store?"
It exposes one tool, get_pending_optimization_tasks, which returns your open changesets — theme changes the agent has proposed that are still awaiting QA, review, or deployment — with their title, priority, status, and creation date.
Requirements
- A TaskerArmy Agent account with at least one connected Shopify store (sign up)
- A personal access token, generated from Team → Connect to Claude / ChatGPT in your dashboard
Connecting
- Log in to your TaskerArmy dashboard and go to Team.
- In the Connect to Claude / ChatGPT section, click Generate token and copy it — it's shown only once.
- Add the server in your MCP client using the endpoint below and an
Authorization: Bearerheader.
Endpoint: https://app.taskerarmy.com/mcp
```json { "mcpServers": { "taskerarmy-agent": { "type": "http", "url": "https://app.taskerarmy.com/mcp", "headers": { "Authorization": "Bearer YOUR_TOKEN_HERE" } } } } ```
Security
Every request is authenticated and scoped to your own account — the tool only ever reads data belonging to the tenant that owns the token. Generating a new token immediately revokes the previous one.
Built by Shugert, a Shopify Partner agency.
Server tool list (1)
Raw names from tools/list. Only developers need these.
| get_pending_optimization_tasks | Returns the tenant's open Shopify theme optimization tasks — changes the TaskerArmy agent has proposed that are still awaiting review, QA, or approval before going live. Takes no parameters. |