nowfound

Alternatives

Products that do what Model Tools Protocol (MTP) – Forget MCP, bash is all you need does

Recently I was trying to use an MCP server to pull data from a service, but hit a limitation: the MCP didn't expose the data I needed, even though the service's REST API supported it. So I wrote a quick CLI wrapper around the API. Worked great, except Claude Code had no structured way to know what my CLI does or how to call it. For `gh` or `curl` the model can learn from the extensive training data, but for a tool I just wrote, it was stabbing in the dark. MCP solves this discovery problem, but it does it by rebuilding tool interaction from scratch: server processes, JSON-RPC transport,…

  1. 1

    The Official MCP Bridge to GitHub APIs

    2025

  2. 2CC

    Hi all! I normally work on the PyTorch project but I've been on baby leave for the past month, so I've been playing around with AI as a user rather than a framework implementor. I really liked the agent experience with Claude Code, but I couldn't really justify spending so many dollars on API costs for random side projects. I already pay for a Claude Pro subscription though, and it turns out you can simulate many of Claude Code's features with an MCP. If you have a Pro subscription, check this out! I think it really captures the Claude Code experience quite well, without forcing you to pay…

    2025 · github.com

  3. 3MF

    Hey everyone, I've wanted an easy way to control which mcp server tools are available to clients. So for example, I might want a gmail server to only expose the read tool (but not send, delete etc). I figured if I create a cli for spawning mcp servers, I could intercept the stdin, stdout, stderr etc and modify what the clients see when they are making calls to list tools, resources, and prompts. Well it worked! In the initial version you can easily add a server to claude with a safe list of tools: npx -y mcpgod add @modelcontextprotocol/server-everything --client claude --tools=echo,add…

    2025 · github.com

  4. 4MO

    Every MCP server injects its full tool schemas into context on every turn — 30 tools costs ~3,600 tokens/turn whether the model uses them or not. Over 25 turns with 120 tools, that's 362,000 tokens just for schemas. mcp2cli turns any MCP server or OpenAPI spec into a CLI at runtime. The LLM discovers tools on demand: mcp2cli --mcp https://mcp.example.com/sse --list # ~16 tokens/tool mcp2cli --mcp https://mcp.example.com/sse create-task --help # ~120 tokens, once mcp2cli --mcp https://mcp.example.com/sse create-task --title "Fix bug" No…

    Mar 2026 · github.com

  5. 5
    N8N2MCP137

    Turn your N8N workflow to MCP servers with just 3 clicks

    2025

  6. 6ST

    Hi! After learning about MCP, I'm really excited about the future of provider-agnostic, re-usable tooling. Unfortunately I've found that while it's easy to implement an MCP server for use with tools that support it (such as Claude Desktop), it's not as easy to implement your own support (such as integrating an MCP server into your own LLM application). We implemented a thin MCP wrapper that easily integrates with Mirascope calls so that you can hook up an MCP server and client super easily to any supported LLM provider. Excited to see what people build with this!

    2025 · mirascope.com

  7. 7OS

    Large Language Models (LLMs) are powerful, but they’re limited by fixed context windows and outdated knowledge. What if your AI could access live search, structured data extraction, OCR, and more—all through a standardized interface? We built the JigsawStack MCP Server, an open-source implementation of the Model Context Protocol (MCP) that lets any AI model call external tools effortlessly. Here’s what it unlocks: - Web Search & Scraping: Fetch live information and extract structured data from web pages. - OCR & Structured Data Extraction: Process images, receipts, invoices, and handwritten…

    2025

  8. 8AF

    I built an unofficial CLI and MCP server for Lambda cloud GPU instances. The main idea: your AI agents can now spin up and manage Lambda GPUs for you. The MCP server exposes tools to find, launch, and terminate instances. Add it to Claude Code, Cursor, or any agent with one command and you can say things like "launch an H100, ssh in, and run big_job.py" Other features: - Notifications via Slack, Discord, or Telegram when instances are SSH-ready - 1Password support for API keys - Also includes a standalone CLI with the same functionality Written in Rust. MIT licensed. Note: This is an…

    Jan 2026 · github.com

  9. 9AM

    This is an open‑source Model Context Protocol (MCP) server that gives any LLM a sense of the passage of time. Most MCP demos wire LLMs to external data stores. That’s useful, but MCP is also a chance to give models perception — extra senses beyond the prompt text. Six functions (`current_datetime`, `time_difference`, `timestamp_context`, etc.) give Claude&#x2F;GPT real temporal awareness: It can spot pauses, reason about rhythms, and even label a chat’s “three‑act structure”. Runs locally in <60 s (Python) or via a hosted demo. If time works, what else could we surface? - Location &#x2F;…

    2025 · github.com

  10. 10MG

    Hey HN, Sagiv from liblab is here. We've been deep in the world of API tooling for years at liblab, primarily focusing on generating SDKs and documentation from OpenAPI specs. Recently, we kept running into a recurring frustration: connecting AI tools to existing APIs is way more complex than it should be. You start with a simple goal – let an LLM talk to your API – and suddenly you're neck-deep in spinning up infrastructure, wrestling with authentication, and writing a ton of custom glue code just to translate natural language into structured API calls. Then you have to maintain it all. To…

    2025 · mcp.liblab.com

  11. 11AM
  12. 12

    Zero-dep CLI: one MCP config synced to every agent. A 255-tool listing costs 581 tokens, not 71,929 - schemas never enter context. - activeing123/mcptoon

    26d ago · github.com

  13. 13M1

    Got tired of every MCP example being overly verbose, or needing Docker or Mac-only scripts, so I threw together MCP-123. Point it at a tools.py, run `server.run_server(...)`, and the client auto-discovers&#x2F;calls functions with OpenAI. I hope this is useful to you all.

    2025 · github.com

  14. 14

    easily run MCP (model context protocol) servers in the cloud

    2025

  15. 15MS

    Hi HN! We kept seeing devs get pwned through MCP tools in ways that security scanners completely miss. So we built an open-source analyzer to catch these attacks. Our first OSS by Mighty team. The problem: At Defcon, we saw MCP exploits with 100% success rate against Claude and Llama. Three attack patterns: Hidden Unicode in "error messages" - Paste a colleague's error into Claude, your SSH keys get exfiltrated Trusted tool updates - That database tool you've used for months? Last week's update added credential theft Tool redefinition - Malicious tool redefines "deploy to prod" to run…

    2025 · github.com

  16. 16RM

    We’ve open-sourced the Robot MCP Server, a tool that lets large language models (LLMs) talk directly to robots running ROS1 or ROS2. What it does - Connects any LLM to existing ROS robots via the Model Context Protocol (MCP) - Natural language → ROS topics, services, and actions (And the ability to read any of them back) - Works without changing robot source code Why it matters - Makes robots accessible from natural language interfaces - Opens the door to rapid prototyping of AI-robot applications - We are trying to create a common interface for safe AI ↔ robot communication This is too big…

    Sep 2025 · github.com

  17. 17AL

    Most of the MCP servers that I’ve seen are tools implemented in standalone projects. To onboard more tools (especially agents and multi-agent workflows) to MCP, I’ve been thinking it’s important to allow AI engineers to continue to prototype in their existing agent frameworks and deploy with minimal conversion when ready. We created the automcp library, which you can add as a dependency to existing projects (CrewAI, LangGraph, Llama Index, OpenAI Agents SDK, Pydantic AI, mcp-agent currently supported but more coming soon). You just need to run a CLI command to create a run_mcp.py file, make…

    2025 · github.com

  18. 18

    Your Agents. Your Business. Connected.

    Aug 2026 · salestrics.com

  19. 19PT

    I built Polymcp, a framework that allows you to transform any Python function into an MCP (Model Context Protocol) tool ready to be used by AI agents. No rewriting, no complex integrations. Examples Simple function: from polymcp.polymcp_toolkit import expose_tools_http def add(a: int, b: int) -> int: """Add two numbers""" return a + b app = expose_tools_http([add], title="Math Tools") Run with: uvicorn server_mcp:app --reload Now add is exposed via MCP and can be called directly by AI agents. API function: import requests from polymcp.polymcp_toolkit import expose_tools_http def…

    Jan 2026

  20. 20TA

    Hi HN! We built Zalor. It turns an OpenAPI spec into an MCP server, so you can make your APIs callable by Claude or ChatGPT without writing any code. Here's a list of specs you can try: https:&#x2F;&#x2F;github.com&#x2F;ZalorAI&#x2F;test-data&#x2F;tree&#x2F;main&#x2F;openapi, but feel free to use your own. For background, MCP is a protocol that standardizes how you connect tools to AI assistants. We're both engineers at large software companies, and when we worked on MCP integrations we saw how long setup took and how often the spec was changing. So we built a platform to handle the MCP…

    Dec 2025 · mcp.zalor.ai

  21. 21HM

    We built a Rust MCP server, which wraps the excellent headless terminal (HT)[1] to makes it available for agentic coding tools. Most agentic coding tools struggle with blocking, interactive terminal tools (all the boilerplate generator, infra CLI tools etc). This is because many existing CLI dev tools are built for humans and require interactive input. We built this so agentic coding tools (Claude Code, Cursor, Memex, etc) can “see” and “interact” with terminals exactly like humans do. In our demo video [2], you'll see it operating vim&#x2F;emacs just as a human would - selecting options,…

    2025 · github.com

  22. 22OS

    Hello HN, I built this because I wanted to give Claude Desktop access to my Notion workspace without running a flaky local Python script via stdio. This is a Node.js&#x2F;Express implementation of the Model Context Protocol (MCP) that uses SSE (Server-Sent Events) for transport. It’s designed to be stateless and deployable as a container (I'm hosting it on Apify, but it works anywhere with Node). The Stack: TypeScript + Express @modelcontextprotocol&#x2F;sdk Zod for input validation Bearer Auth for security (since it exposes an HTTP endpoint) Capabilities: It allows the LLM to search pages,…

    Dec 2025 · github.com

  23. 23MM

    Hi HN! I'm Noah, an ordinary guy that got really interested in MCP about a month ago when I downloaded Cursor. It's been super exciting to see companies around the world launch their own MCP servers empowering AI to do more. Unfortunately, I got a bit overwhelmed setting up MCP servers across my clients like Claude Desktop, Cursor, and Claude Code, so I figured I'd take a shot at building an open-source tool to help others and myself! So yeah, I built a CLI tool that enables you to quickly get MCP servers from the Web integrated with your clients like Cursor and Claude Desktop. You can use…

    2025 · github.com

  24. 24MC

    I built murl because interacting with MCP (Model Context Protocol) servers from the command line was way more painful than it needed to be. MCP uses JSON-RPC 2.0 over HTTP, so every request means hand-crafting payloads with method names, params objects, and id fields. I wanted something that felt like curl. Given an MCP server at https:&#x2F;&#x2F;mcp.deepwiki.com&#x2F;mcp, murl lets you append virtual paths like &#x2F;tools or &#x2F;tools&#x2F;read_wiki_structure that map to MCP methods. These aren't real HTTP endpoints — murl translates them into the right JSON-RPC calls behind the scenes:…

    Feb 2026 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →