AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Magento Connect

skill-magendooro-magento-claude-skills-magento-connect · by magendooro

Test Magento connectivity and show store configuration. Use when setting up or verifying the Magento connection.

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-magendooro-magento-claude-skills-magento-connect

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-magendooro-magento-claude-skills-magento-connect)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Magento Connect? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Magento Connection Check

Test connectivity to a Magento 2 instance and display store configuration.

Required Environment Variables

| Variable | Purpose | Example | |----------|---------|---------| | MAGENTO_BASE_URL | Magento base URL (no trailing slash) | https://m248.magendoo.ro | | MAGENTO_ADMIN_TOKEN | Integration Bearer token for admin REST API | 53u9t46do... | | MAGENTO_STORE_CODE | Store view code (optional, defaults to default) | default |

Step 1: Check environment variables

Verify all required env vars are set. If missing, tell the user what to set and how:

echo "MAGENTO_BASE_URL=${MAGENTO_BASE_URL:-NOT SET}"
echo "MAGENTO_ADMIN_TOKEN=${MAGENTO_ADMIN_TOKEN:+SET (${#MAGENTO_ADMIN_TOKEN} chars)}"
echo "MAGENTO_STORE_CODE=${MAGENTO_STORE_CODE:-default}"

If MAGENTO_BASE_URL is not set, stop and ask the user to set it:

export MAGENTO_BASE_URL=https://your-store.example.com
export MAGENTO_ADMIN_TOKEN=your-token-here

Step 2: Test GraphQL (storefront)

curl -s --max-time 10 -w "\nHTTP_STATUS:%{http_code}" \
  -X POST "${MAGENTO_BASE_URL}/graphql" \
  -H "Content-Type: application/json" \
  -H "Store: ${MAGENTO_STORE_CODE:-default}" \
  -d '{"query":"{ storeConfig { store_code store_name locale base_currency_code default_display_currency_code timezone base_url base_media_url } }"}'

Parse the JSON response. Show: store name, currency, locale, timezone, base URL.

Step 3: Test REST (admin)

curl -s --max-time 10 -g -w "\nHTTP_STATUS:%{http_code}" \
  "${MAGENTO_BASE_URL}/rest/${MAGENTO_STORE_CODE:-default}/V1/store/storeConfigs" \
  -H "Authorization: Bearer ${MAGENTO_ADMIN_TOKEN}" \
  -H "Content-Type: application/json"

If HTTP 200: admin token is valid. Show store view count. If HTTP 401: token is invalid or oauth/consumer/enable_integration_as_bearer is not set to Yes.

Step 4: Summary

Report connectivity status:

  • GraphQL: OK/FAIL
  • REST Admin: OK/FAIL
  • Store: name, code, currency, timezone
  • Base URL confirmed

User Request

$ARGUMENTS

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.