Back to the catalog

mygigsters-super

Connects Claude to the MyGigsters superannuation API. Manage employees, submit super contributions, onboard employers, track payments, and v

Open source Repository Open in the app JSON README (API)

About

Connects Claude to the MyGigsters superannuation API. Manage employees, submit super contributions, onboard employers, track payments, and verify super funds — all from within Claude, across QA and production environments.

Details

Kind
Plugins
Topic
Finance & crypto
Publisher
mygigsters
Origin
marketplace
Category
ferramentas
Last push
2026-04-30T09:23:12Z
Repository state
ativo
Added
2026-08-30 01:48:58
Updated
2026-08-30 01:48:58
Origin id
mygigsters/mygigsters-super-plugin/mygigsters-super

README

# MyGigsters Plugin

Connects Claude to the MyGigsters superannuation API, providing skills and MCP tools for managing employees, submitting contributions, onboarding employers, tracking payments, and verifying super funds.

## Environments

This plugin runs two MCP server instances — one for QA and one for Production. Tools are prefixed accordingly:

- `mygigsters-qa__*` — QA environment (`https://qa-super.mygigsters.com.au`)
- `mygigsters-prod__*` — Production environment (`https://super.mygigsters.com.au`)

## Setup

Set the following environment variables before installing the plugin:

| Env Var | Required | Description |
|---------|----------|-------------|
| `MYGIGSTERS_QA_API_KEY` | For QA | Base64-encoded `username:password` API key |
| `MYGIGSTERS_QA_TOKEN` | For QA key mgmt | JWT token for managing QA API keys |
| `MYGIGSTERS_PROD_API_KEY` | For Prod | Base64-encoded `username:password` API key |
| `MYGIGSTERS_PROD_TOKEN` | For Prod key mgmt | JWT token for managing Prod API keys |

You only need QA vars to work in QA, and prod vars to work in prod. If a set of credentials is missing, those environment tools will return auth errors.

**Getting an API key:** Use the auth-setup skill — it walks through the OTP login flow and API key creation.

## Skills

| Skill | What it does |
|-------|-------------|
| `auth-setup` | Login, OTP verification, API key create/list/delete |
| `employee-management` | Create, search, update employees; check super owed |
| `super-contributions` | Validate funds, submit contributions, view history |
| `employer-onboarding` | Register employers, retrieve employer records |
| `payment-tracking` | Track payment status, detailed responses, poll schedules |
| `fund-verification` | APRA/SMSF validation, super stapling, fund search |

## MCP Tools (33 total)

### Auth (5)
`auth_login`, `auth_verify_otp`, `auth_list_api_keys`, `auth_create_api_key`, `auth_delete_api_key`

### Employees (7)
`employee_create`, `employee_list`, `employee_get`, `employee_update`, `employee_search`, `employee_super_owed`, `employee_check_uniqueness`

### Contributions (4)
`contributions_validate_fund`, `contributions_get_active_funds`, `contributions_submit`, `contributions_history`

### Payments (7)
`payment_status`, `payment_response`, `payment_detailed_response`, `payment_batch_ids`, `payment_poll_schedules`, `payment_poll_schedule_get`, `payment_poll_now`

### Employers (3)
`employer_onboard`, `employer_get_by_id`, `employer_get_by_email`

### Verification (4)
`verification_get_apra_funds`, `verification_validate_apra_fund`, `verification_validate_smsf`, `verification_superselector`

### Fund Search (3)
`fund_search`, `fund_search_status`, `fund_search_refresh`

## Requirements

- Node.js 18+ (for the bundled MCP server)

More