Skip to main content
ClaudeWave

Stdio MCP wrapper for Inbin — connect Claude Desktop and other MCP clients to https://inbin.dev/api/mcp

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/yaotsakpo/inbin-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "inbin-mcp": {
      "command": "node",
      "args": ["/path/to/inbin-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/yaotsakpo/inbin-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

# @inbin/mcp

A minimal stdio-to-HTTP proxy for [Inbin](https://inbin.dev)'s Model
Context Protocol surface. Lets stdio-only MCP clients (Claude Desktop,
some Cursor builds, Zed, Cline) talk to Inbin's remote endpoint at
`https://inbin.dev/api/mcp`.

## Install & run

Nothing to install globally. Your MCP client invokes it via `npx`:

```json
{
  "mcpServers": {
    "inbin": {
      "command": "npx",
      "args": ["-y", "@inbin/mcp"],
      "env": {
        "INBIN_API_KEY": "ink_live_..."
      }
    }
  }
}
```

Get an API key from https://inbin.dev/dashboard.

## What it does

- Forwards each stdin JSON-RPC message to `https://inbin.dev/api/mcp`
  as an HTTPS POST with your Bearer key.
- Streams the response back to stdout.
- Notifications (messages with no `id`) get no reply, per JSON-RPC.
- Concurrent in-flight requests are supported.

## Tools exposed

Every Inbin application is an MCP server. Available tools:

- `list_inboxes` — enumerate inboxes in your app
- `list_events` — filter by inbox / status / since; paginated
- `search_events` — substring search over id / subject / from / to
- `get_event` — a single event's parsed JSON + delivery history
- `describe_schema` — the current extraction schema

## Environment

| Variable | Required | Description |
| --- | --- | --- |
| `INBIN_API_KEY` | yes | your Inbin API key |
| `INBIN_MCP_URL` | no | override the endpoint (defaults to production) |
| `INBIN_MCP_DEBUG` | no | set to `1` for stderr logs |

## Remote (recommended)

If your MCP client supports Streamable HTTP transport, skip this
wrapper entirely and connect directly:

```json
{
  "mcpServers": {
    "inbin": {
      "url": "https://inbin.dev/api/mcp",
      "headers": {
        "Authorization": "Bearer ink_live_..."
      }
    }
  }
}
```

## License

MIT.

What people ask about inbin-mcp

What is yaotsakpo/inbin-mcp?

+

yaotsakpo/inbin-mcp is mcp servers for the Claude AI ecosystem. Stdio MCP wrapper for Inbin — connect Claude Desktop and other MCP clients to https://inbin.dev/api/mcp It has 0 GitHub stars and was last updated today.

How do I install inbin-mcp?

+

You can install inbin-mcp by cloning the repository (https://github.com/yaotsakpo/inbin-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is yaotsakpo/inbin-mcp safe to use?

+

yaotsakpo/inbin-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains yaotsakpo/inbin-mcp?

+

yaotsakpo/inbin-mcp is maintained by yaotsakpo. The last recorded GitHub activity is from today, with 1 open issues.

Are there alternatives to inbin-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy inbin-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.

Featured on ClaudeWave: yaotsakpo/inbin-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/yaotsakpo-inbin-mcp)](https://claudewave.com/repo/yaotsakpo-inbin-mcp)
<a href="https://claudewave.com/repo/yaotsakpo-inbin-mcp"><img src="https://claudewave.com/api/badge/yaotsakpo-inbin-mcp" alt="Featured on ClaudeWave: yaotsakpo/inbin-mcp" width="320" height="64" /></a>

More MCP Servers

inbin-mcp alternatives