npm @inbin/mcpstreamable-httpMITupdated 16d ago
A minimal stdio-to-HTTP proxy for Inbin'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://api.inbin.dev/mcp.
What can you do with inbin?
@inbin/mcp
A minimal stdio-to-HTTP proxy for Inbin'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://api.inbin.dev/mcp.
Install & run
Nothing to install globally. Your MCP client invokes it via npx:
{
"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://api.inbin.dev/mcpas 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 applist_events— filter by inbox / status / since; paginatedsearch_events— substring search over id / subject / from / toget_event— a single event's parsed JSON + delivery historyquery_events— filter, sort, group and aggregate over extracted records (your inbox as a table)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:
{
"mcpServers": {
"inbin": {
"url": "https://api.inbin.dev/mcp",
"headers": {
"Authorization": "Bearer ink_live_..."
}
}
}
}
License
MIT.
Install
Add inbin to your client. Pick the one you use.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://api.inbin.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @inbin/mcpcodex mcp add mcp -- npx -y @inbin/mcpamp mcp add mcp -- npx -y @inbin/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@inbin/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@inbin/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@inbin/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@inbin/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@inbin/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@inbin/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@inbin/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @inbin/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
6 tools
inbin exposes 6 tools to a connected agent.
- 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
- query_events
- filter, sort, group and aggregate over extracted
- describe_schema
- the current extraction schema
Score
75 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability6/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 8 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.2.0Latest | Jul 25, 2026 |
| 0.1.1 | Jul 24, 2026 |