# Does Token of Esteem have an MCP server?

**Yes — Official.** Token of Esteem maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [tokenofesteem/mcp](https://github.com/tokenofesteem/mcp) — ★ 1, last push 2026-06-08, MIT
- Maintainer: Token of Esteem
- Language: JavaScript
- Category: [E-Commerce](https://mcpyet.com/category/e-commerce/)
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> Front door for the Token of Esteem MCP server: docs plus a minimal introspection stub. Live server hosted at mcp.tokenofesteem.com.
> — how [tokenofesteem/mcp](https://github.com/tokenofesteem/mcp) describes itself

Project site: <https://tokenofesteem.com/for-agents>

## The receipts

- **Official repository:** [tokenofesteem/mcp](https://github.com/tokenofesteem/mcp) — ★ 1, pushed 2026-06-08, MIT (maintained)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add tokenofesteem -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "tokenofesteem": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "tokenofesteem": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "tokenofesteem": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Verdict derived by matching the Token of Esteem organization against its GitHub presence and cross-checking against published MCP server lists.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Corrections: hello@mcpyet.com.

## Also in E-Commerce

- [Shopify](https://mcpyet.com/mcp/shopify.md) — Official (Yes)
- [GMO Pepabo, Inc.](https://mcpyet.com/mcp/pepabo.md) — Official (Yes)
- [CoinGate Gift Cards](https://mcpyet.com/mcp/coingate-gift-cards.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/tokenofesteem/ — data refreshed 2026-08-11
