ctonneslan/mcpwire
The simplest way to connect to MCP servers. Two lines to connect, one line to call tools.
claude mcp add agentrank -- npx -y agentrank-mcp-server Overview
ctonneslan/mcpwire is a TypeScript MCP server licensed under MIT. The simplest way to connect to MCP servers. Two lines to connect, one line to call tools. Topics: agents, ai, anthropic, claude, llm, mcp, model-context-protocol, openai, tools, typescript.
Ranked #3 out of 110 indexed tools.
In the top 3% of all indexed tools.
Actively maintained with commits in the last week.
Ecosystem
Score Breakdown
1 stars → early stage
Last commit today → actively maintained
3/5 issues closed → decent issue management
1 contributor → solo project
No dependents → no downstream usage
Weights: Freshness 25% · Issue Health 25% · Dependents 25% · Stars 15% · Contributors 10% · How we score →
How to Improve
Matched Queries
From the README
# mcpwire
**The simplest way to connect to MCP servers.** Two lines to connect. One line to call tools.
```typescript
import { connect } from "mcpwire";
const server = await connect("http://localhost:3000/mcp");
const result = await server.callTool("search", { query: "hello" });
```
No transport configuration. No protocol negotiation. No boilerplate. Just connect and go.
## Why?
The official MCP SDK is powerful but verbose. Connecting to a server takes 30+ lines of setup code. mcpwire wraps it in a clean, ergonomic API so you can focus on building, not configuring.
| | mcpwire | Official SDK |
|---|------|-------------|
| Lines to connect | 2 | 15-30+ |
| Auto transport detection | Yes | Manual |
| OpenAI/Anthropic tool format | Built-in | DIY |
| Server discovery | Built-in | None |
| Learning curve | 3 methods | 20+ classes |
## Install
```bash
npm install mcpwire
```
## Quick Start
### Connect over HTTP
```typescript
import { connect } from "mcpwire";
const server = awa Read full README on GitHub → Claim this listing to add a tagline, mark deprecation status, and get a verified maintainer badge.
Get the weekly AgentRank digest
Top movers, new tools, ecosystem insights — straight to your inbox.