pypi wayforth-mcpstdioupdated 2mo ago
The runtime that keeps AI agents running in production.
What can you do with wayforth?
Wayforth
The runtime that keeps AI agents running in production.
v0.9.2
One install gives an agent a single place to discover, use, and pay for thousands of services ā and when one fails mid-run, Wayforth reroutes so the agent keeps going. Agents break in production. Yours won't.
Why Wayforth
Agents demo well and fail in production. Real APIs rate-limit, expire keys, return garbage, and go down mid-task ā and a long-running agent falls over the first time a dependency hiccups. Wayforth is the operational layer between your agent and that mess.
- It reroutes itself ā when a service fails mid-run, Wayforth fails over to an interchangeable provider. Live today for search and model inference, expanding as coverage grows.
- It stays on budget ā give any run a hard credit ceiling; the call that would exceed it is refused before it spends. No runaway loops.
- One install, every service ā MCP-native, managed credentials, one balance. No per-service signups.
- Speaks the standards ā MCP-native, and live A2A interop (signed agent card + JWKS + streaming).
Quick start
# 1. Install the MCP server
uvx wayforth-mcp
# Add to Claude Code permanently
claude mcp add wayforth -- uvx wayforth-mcp
# 2. Get a key at wayforth.io/signup, then:
export WAYFORTH_API_KEY=wf_live_...
Python
pip install wayforth-sdk
from wayforth import Wayforth
client = Wayforth(api_key="wf_live_...")
results = client.search("real-time stock data")
TypeScript
import { WayforthClient } from "wayforth-sdk";
const wf = new WayforthClient("wf_live_...");
Full reference: gateway.wayforth.io/guide/
What's live
- Self-heal reliability ā automatic failover across interchangeable providers (search + model inference today).
- Loop budgets ā per-run credit ceilings, enforced before spend, ledger-derived.
- Hosted runtime ā deploy and run agents in isolated environments.
- A2A interop ā the gateway serves a signed agent card and JWKS and supports streaming, verified against
a2a-sdk==0.3.26. - Managed access ā a catalog of thousands of services across 19 categories, reachable through one install, with managed keys for a set of live managed services.
- Multi-rail payments (built, in sandbox) ā designed to pay across card, USDC, and x402 under one balance. Live settlement is gated on incorporation.
Pricing
| Plan | Credits/month | Price |
|---|---|---|
| Free | 100 | Free |
| Starter | 6,000 | $12/mo |
| Builder | 21,000 | $29/mo |
| Pro | 72,000 | $99/mo |
| Growth | 240,000 | $299/mo |
| Enterprise | 1,000,000 | Custom |
Details: wayforth.io/pricing
On the roadmap
AP2 (verified payment authorization), live payment settlement across all rails, and expanding self-heal to more service categories.
Links
- Quickstart ā wayforth.io/quickstart
- API reference ā gateway.wayforth.io/guide/
- For providers ā wayforth.io/providers
- PyPI (MCP) ā pypi.org/project/wayforth-mcp
- PyPI (SDK) ā pypi.org/project/wayforth-sdk
- Contact ā wayforth.io/contact
License
Business Source License 1.1 ā converts to Apache 2.0 on 2030-04-25.
Ā© 2026 Wayforth Technologies Inc.
Install
Add wayforth to your client. Pick the one you use.
claude mcp add wayforth-mcp -- uvx wayforth-mcpcodex mcp add wayforth-mcp -- uvx wayforth-mcpamp mcp add wayforth-mcp -- uvx wayforth-mcp{
"mcpServers": {
"wayforth-mcp": {
"command": "uvx",
"args": [
"wayforth-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"wayforth-mcp": {
"command": "uvx",
"args": [
"wayforth-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"wayforth-mcp","command":"uvx","args":["wayforth-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"wayforth-mcp": {
"command": "uvx",
"args": [
"wayforth-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"wayforth-mcp": {
"command": "uvx",
"args": [
"wayforth-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"wayforth-mcp": {
"command": "uvx",
"args": [
"wayforth-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"wayforth-mcp": {
"type": "local",
"command": "uvx",
"args": [
"wayforth-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"wayforth-mcp": {
"command": {
"path": "uvx",
"args": [
"wayforth-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx wayforth-mcpRun `goose configure`, choose **Add Extension ā Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance22/25
- Trust6/20
- Capability0/15
- Install experience12/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 62 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 0.1.3Latest | Apr 24, 2026 |
| 0.1.2 | Apr 24, 2026 |
| 0.1.1 | Apr 24, 2026 |