Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions src/thatsme/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# thatsme-mcp-issuer

Issue digital certificates and query engagement data from
thatsme — the world's first RewardTech platform.

## Category

Business Tools

## Tools

- `search_events` — Search your organization's events
- `issue_certificates` — Issue 3D digital certificates to recipients
- `get_engagement_funnel` — Get funnel data per event (issued, accepted, viewed, shared)
- `list_recipients` — List recipients with certificate status
- `export_csv` — Export emission data as CSV

## Setup

Requires a thatsme account with PRO plan or higher. Get your API key at `app.thatsme.com.br/settings/integrations`.

## Usage

```json
{
"mcpServers": {
"thatsme": {
"command": "npx",
"args": ["-y", "thatsme-mcp-issuer"],
"env": {
"THATSME_API_KEY": "your-api-key"
}
}
}
}
```

## Remote (HTTP)

```json
{
"mcpServers": {
"thatsme": {
"url": "https://mcp.thatsme.com.br/mcp",
"headers": {
"Authorization": "Bearer your-api-key"
}
}
}
}
```
Loading