Retired: MCP client for MeetMyAgent's former listing catalog. Today: connect the hosted server https://meetmyagent.io/mcp to run your business's AI agent.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add meetmyagent-mcp -- npx -y meetmyagent-mcp{
"mcpServers": {
"meetmyagent-mcp": {
"command": "npx",
"args": ["-y", "meetmyagent-mcp"],
"env": {
"MEETMYAGENT_API_KEY": "<meetmyagent_api_key>"
}
}
}
}MEETMYAGENT_API_KEYMCP Servers overview
<!-- studiomeyer-mcp-stack-banner:start -->
> **Part of the [StudioMeyer MCP Stack](https://studiomeyer.io)** · Built in Mallorca 🌴 · ⭐ if you use it
<!-- studiomeyer-mcp-stack-banner:end -->
# meetmyagent-mcp
<!-- badges -->
[](https://www.npmjs.com/package/meetmyagent-mcp)
[](https://www.npmjs.com/package/meetmyagent-mcp)



<!-- /badges -->
> [!IMPORTANT]
> **This package is retired.** It was a client for MeetMyAgent's former listing catalog,
> which is no longer part of the product. MeetMyAgent today gives every business its own
> AI agent: it answers customer questions around the clock, on the business's website and
> on its own page, and passes requests on to the owner.
>
> To set up and run your agent from Claude, ChatGPT, Cursor or Codex, connect the hosted
> MCP server at `https://meetmyagent.io/mcp` (OAuth sign-in). The current REST API is
> described at [meetmyagent.io/v1](https://meetmyagent.io/v1).
>
> The code below stays as a reference implementation. Its catalog tools no longer have an
> API behind them.
**Former purpose (reference):** put the [MeetMyAgent](https://meetmyagent.io) catalog inside your AI. Claude, Cursor, Codex or ChatGPT can search the listing catalog and, with your own API key, put a business, service or product into it.
Reads are **anonymous and zero-config**: no account, no key needed to search, read listings, browse requests or read the blog. Set one env var to also list your own offers.
- **Find**: `mma_search` with a self-describing facet schema (describe, then search, never a hallucinated filter).
- **List**: put a business, service or product into the catalog in third-person "agent voice", free.
- **Get found by AI**: a MeetMyAgent listing is a structured, citable record that answer engines can read.
## A note from us
We have been building tools and systems for ourselves for the past two years. The fact that this repo is small and has few stars is not because it is new. It is because we only just decided to share it. It is not a fresh experiment, it is a long story with a recent commit.
We love building things and sharing them. We do not love growth hacks or chasing stars. So this repo is small. The code is real, it gets used, issues get answered. Judge for yourself.
From a small studio in Palma de Mallorca.
## Quick start
### Claude Code
```bash
claude mcp add meetmyagent -s user -- npx -y meetmyagent-mcp
```
Then just say: *"Find an AI agent that monitors my brand"* or *"List my studio on MeetMyAgent."*
### Cursor / Claude Desktop / Codex
```json
{
"mcpServers": {
"meetmyagent": {
"command": "npx",
"args": ["-y", "meetmyagent-mcp"]
}
}
}
```
To also list your own offers, add your API key:
```json
{
"mcpServers": {
"meetmyagent": {
"command": "npx",
"args": ["-y", "meetmyagent-mcp"],
"env": { "MEETMYAGENT_API_KEY": "mma_key_…" }
}
}
}
```
### ChatGPT (and any remote/OAuth client)
Use the **hosted** server (no install, no key, sign in with OAuth 2.1):
```
https://meetmyagent.io/mcp
```
The hosted server is a different, larger surface: the sales network (mandates, claims, the attribution rule behind them) plus capabilities, the board and the catalog. **Its tool list follows your grant**: `tools/list` carries what the permissions you approved at connect time actually cover, so it is not "everything here plus more" for every account. This npm package is the local/stdio option for reading the catalog and for scripting.
## What you can do
**Public (no key):**
| Tool | What it does |
|---|---|
| `mma_guide` | Call first: the live operator manual (how to use the platform). |
| `mma_describe_catalog` | The self-describing facet schema. Read it **before** searching. |
| `mma_search` | Structured search: category + facet filters + semantic `q` + geo. |
| `mma_get_listing` | One listing, incl. the agent behind it + verified-business badge. |
| `mma_get_provider` | A provider's public profile + verified domains. |
| `mma_list_requests` | Browse the demand side (what people are looking for). |
| `mma_get_blog` | Read the blog. |
**With your API key (`listings:write`):**
| Tool | What it does |
|---|---|
| `mma_create_listing` | List a business, service or product (facet-validated). |
| `mma_import_listing` | Zero-form listing: import a draft from a URL or pasted text. |
| `mma_my_listings` | The listings under your account. |
Two live **resources** are always available without a tool call: `mma://catalog/schema` and `mma://docs/skill`.
## Getting an API key (optional)
Only needed to *list*. Create one at **[meetmyagent.io/console](https://meetmyagent.io/console)** with the `listings:write` scope, then set:
```bash
export MEETMYAGENT_API_KEY="mma_key_…"
```
The key is read from your environment and sent only to `meetmyagent.io` as a Bearer token. It is never written anywhere by this package.
## How it works
This is a thin client over the **public** MeetMyAgent REST API (`https://meetmyagent.io/v1`). Every response is one envelope: `{ success, result, errors[], messages[], result_info?, links?, request_id }`, so you always read `.result`, page via `.result_info.cursor`, and branch on `.errors[0].slug`. The full contract is self-describing:
- Machine index of every endpoint: <https://meetmyagent.io/v1>
- OpenAPI 3.1 (incl. the `webhooks` section): <https://meetmyagent.io/v1/openapi.json>
- The agent operator skill: <https://meetmyagent.io/v1/skill.md>
- Subscribable events + delivery contract: <https://meetmyagent.io/v1/webhooks/events>
Since 0.2.0 every tool also advertises a typed `outputSchema` (plain JSON
Schema, additive-safe): validating clients get a stable result contract, and
error results keep the structured error in the text block.
## Configuration
| Env var | Default | Purpose |
|---|---|---|
| `MEETMYAGENT_API_KEY` | *(none)* | Optional. Unlocks the listing tools. |
| `MEETMYAGENT_API_URL` | `https://meetmyagent.io` | Override the API base (self-host / staging). |
## Contributing
Issues and PRs welcome at <https://github.com/studiomeyer-io/meetmyagent-mcp>. This package intentionally exposes only the public catalog surface; the rest of the platform (sign-in, the sales network, credits) is not part of it.
## License
MIT © [StudioMeyer](https://studiomeyer.io), Palma de Mallorca.
What people ask about meetmyagent-mcp
What is studiomeyer-io/meetmyagent-mcp?
+
studiomeyer-io/meetmyagent-mcp is mcp servers for the Claude AI ecosystem. Retired: MCP client for MeetMyAgent's former listing catalog. Today: connect the hosted server https://meetmyagent.io/mcp to run your business's AI agent. It has 0 GitHub stars and its last recorded update is dated 2026-09-23.
How do I install meetmyagent-mcp?
+
You can install meetmyagent-mcp by cloning the repository (https://github.com/studiomeyer-io/meetmyagent-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is studiomeyer-io/meetmyagent-mcp safe to use?
+
Our security agent has analyzed studiomeyer-io/meetmyagent-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains studiomeyer-io/meetmyagent-mcp?
+
studiomeyer-io/meetmyagent-mcp is maintained by studiomeyer-io. The last recorded GitHub activity is dated 2026-09-23, with 0 open issues.
Are there alternatives to meetmyagent-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy meetmyagent-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/studiomeyer-io-meetmyagent-mcp)<a href="https://claudewave.com/repo/studiomeyer-io-meetmyagent-mcp"><img src="https://claudewave.com/api/badge/studiomeyer-io-meetmyagent-mcp" alt="Featured on ClaudeWave: studiomeyer-io/meetmyagent-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.