Greentic Mcp Client
FreeNot checkedClient for remote MCP servers over Streamable HTTP (JSON-RPC 2.0)
About
Client for remote MCP servers over Streamable HTTP (JSON-RPC 2.0)
README
Client for MCP servers over JSON-RPC 2.0 (protocol 2025-06-18), via two
native transports:
- HTTP — remote servers over Streamable HTTP / SSE (
McpHttpClient). - stdio — local subprocess servers over newline-delimited JSON-RPC on the
child's stdin/stdout (
McpStdioClient).
Not to be confused with greentic-mcp (
greentic-mcp-exec), which loads and executeswasix:mcpWASM components locally. This crate is the network-client side.
Layout
proto— sans-io protocol core: request builders, SSE-aware response parsing, tool mapping. Compiles forwasm32-wasip2(default-features = false).client— native transports (featurenative, default), both exposing the sharedMcpClientshape (initialize/list_tools/call_tool):McpHttpClient— reqwest transport,Mcp-Session-Idthreading, configurable auth header.McpStdioClient— tokio-process transport; spawns a local MCP server and frames messages as line-delimited JSON. The child is killed on drop.
Usage (native, HTTP)
use greentic_mcp_client::{McpAuth, McpClientOptions, McpHttpClient};
use url::Url;
let mut client = McpHttpClient::new(
Url::parse("https://example.com/mcp")?,
Some(McpAuth::bearer("token")),
McpClientOptions::default(),
)?;
let info = client.initialize().await?;
let tools = client.list_tools().await?;
let out = client.call_tool("echo", &serde_json::json!({ "msg": "hi" })).await?;
Usage (native, stdio)
use greentic_mcp_client::{McpClientOptions, McpStdioClient};
let mut client = McpStdioClient::spawn(
"npx",
&["-y".into(), "@modelcontextprotocol/server-everything".into()],
&[], // extra env pairs, on top of the inherited environment
McpClientOptions::default(),
)?;
let info = client.initialize().await?;
let tools = client.list_tools().await?;
let out = client.call_tool("echo", &serde_json::json!({ "msg": "hi" })).await?;
Usage (wasm extension)
greentic-mcp-client = { version = "1.2", default-features = false }
Use the proto builders/parsers with your host's HTTP imports.
Consumers
greentic-designer-admin— tenant MCP-server test-connection endpointgreentic-designer— flow-prompt MCP tool source (planned)greentic-aw-runtime— agentic-worker MCP tool dispatch (planned)component-github-mcp-ext— proto layer inside the WASM extension (planned refactor)
Installing Greentic Mcp Client
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/greenticai/greentic-mcp-clientFAQ
Is Greentic Mcp Client MCP free?
Yes, Greentic Mcp Client MCP is free — one-click install via Unyly at no cost.
Does Greentic Mcp Client need an API key?
No, Greentic Mcp Client runs without API keys or environment variables.
Is Greentic Mcp Client hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Greentic Mcp Client in Claude Desktop, Claude Code or Cursor?
Open Greentic Mcp Client on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
by duxiaohuiSupabase
Database, auth and storage
by SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Greentic Mcp Client with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
