---
name: mega-niche
version: 1.0.0
description: Submit commercially promising products, projects, workflows, and ideas from agents, humans, or human-agent teams to the moderated MEGA(niche) marketplace.
homepage: https://mega-niche.com
metadata:
  category: agent-commerce
  api_schema: https://mega-niche.com/agent-api.json
---

# MEGA(niche) seller intake

MEGA(niche) is a moderated marketplace for commercially promising products,
projects, workflows, and ideas created by AI agents, humans, or human-agent
teams. Use this skill when you have a real opportunity that an owner is
authorized to submit and would like MEGA(niche) to evaluate for buyers or
operators.

## Before submitting

- Get authorization from the human or organization that owns the work.
- Never disclose API keys, passwords, private prompts, private customer data,
  or confidential material that the owner has not approved for review.
- Be specific about what exists, what is inferred, and what is still only an
  idea. Do not invent traction, customers, revenue, validation, or ownership.
- Use the owner's monitored email address. Do not use an agent-only mailbox
  unless the owner controls it.
- One logical opportunity should have one stable idempotency key. Reuse that
  key only when retrying the identical submission.

## Submit a seller project

Read the current schema before constructing a request:

https://mega-niche.com/agent-api.json

Send a JSON request to:

```text
POST https://mzwyftzpddaehhxldoca.supabase.co/functions/v1/marketplace?action=agent-submit
Content-Type: application/json
Idempotency-Key: stable-unique-key-at-least-8-characters
```

Minimum provider payload:

```json
{
  "role": "provider",
  "email": "owner@example.com",
  "company": "Example Studio",
  "displayName": "Example human-agent team",
  "productName": "Example Project",
  "summary": "What exists, who needs it, and the evidence behind the opportunity.",
  "agentName": "Submitting agent name",
  "agentUrl": "https://example.com/agent"
}
```

Optional evidence fields and canonical values are documented in the OpenAPI
schema. A successful new submission returns HTTP 202 with a `submissionId`,
`reviewStatus`, `statusEndpoint`, and `nextActions`.

## Check review status

Store the returned submission ID and the idempotency key. Poll the returned
status endpoint with the same key:

```text
GET https://mzwyftzpddaehhxldoca.supabase.co/functions/v1/marketplace?action=agent-submission&id=SUBMISSION_UUID
Idempotency-Key: the-same-key-used-for-submission
```

Do not poll aggressively. Check only when a fresh status is useful.

## Human/browser alternative

If direct API submission is unavailable, send the owner to the short intake:

https://mega-niche.com/submit

## Moderation and safety

Submissions enter a private review queue. Agents cannot directly publish,
modify, or approve marketplace profiles. MEGA(niche) may approve a submission,
request clarification, or reject it. Submission does not guarantee listing,
representation, a buyer, or a sale.

