nowfound

Alternatives

Products that do what MCP Server for Document Processing via Natural Language does

Hey, I'm Nick from Nutrient, I want to share our newly released MCP Server that enables document workflows using natural language — things like redacting, merging, signing, converting formats, or extracting data. While many MCP servers have traditionally been developer-focused, we recognized that the technology could be highly effective in promoting the adoption of tools that are often hidden from end-user interfaces. We’re really interested to see if this side of the protocol could continue to mature. One thing we struggled with was the inability to receive documents from the client (no…

  1. 1

    Give AI agents secure, real-time access to your files

    2025

  2. 2
    Yavy110

    Turn any website into an MCP server for AI

    Feb 2026

  3. 3

    Instantly create MCP servers and SDKs that LLMs understand

    Sep 2025

  4. 4
    N8N2MCP137

    Turn your N8N workflow to MCP servers with just 3 clicks

    2025

  5. 5

    Real-time database schemas for AI-IDEs via MCP protocol

    2025

  6. 6MO

    Hey HN - we built Morphik MCP to solve a common problem: finding specific information across scattered technical docs. We've experimented with GraphRAG, ColPali, contextual embeddings, and more. MCP emerged as the solution that unifies these approaches. Features: - Multimodal search across text, diagrams, and videos - Natural language knowledge base management - Fully open-source with responsive support What sets MCP apart is its ability to return images (including diagrams) directly to the MCP client. Users have applied it to search over data ranging from blood tests to patents, and we use…

    2025 · docs.morphik.ai

  7. 7AM

    I’ve been building Canine for about 2 years now, and have slowly grown it to about ~1000 developers using it for deploying all sorts of apps / projects / etc. Amazingly, the whole thing is still able to run on a single 48GB Hetzner VPS. Think of it basically like Coolify, for Kubernetes. I previously posted about it here: https://news.ycombinator.com/item?id=44292103 Recently, we added MCP capabilities to canine, and I was shocked how well it worked. It basically is able to create services, cron jobs, databases, get the logs for these and redeploy. See it here:…

    Apr 2026

  8. 8MM

    Hey HN! I’m Gui from deco (decocms.com). We’ve been using this tool internally as the foundation for a few customer AI platforms, and today we’re open-sourcing it as MCP Mesh. MCP is quickly becoming the standard for agentic systems, but… once you go past a couple servers it turns into the same problems for every team: - M×N config sprawl (every client wired to every server, each with its own JSON + ports + retries) - Token + tool bloat (dumping tool definitions into every prompt doesn’t scale) - Credentials + blast radius (tokens scattered across clients, hard to audit, hard to revoke) - No…

    Dec 2025 · github.com

  9. 9LF

    We built a no/low-code tool that lets you spin up MCPs from a single prompt. MCPs give LLMs access to tools, data, and actions—but they’re hard to build and deploy. Our tool abstracts that: describe what you want, and it auto-generates and hosts the necessary components. No UI flows, no manual chaining—just prompt and go. Examples: • Pull email, parse a DocSend, check Reddit, draft reply • Extract data from a niche site + send a Slack alert • Combine tools without writing glue code Live demo: https://www.youtube.com/watch?v=4uCiaQrgfoE Built over a weekend after getting…

    2025 · generatemcp.com

  10. 10OS

    I built a zero-configuration tool for automatically exposing FastAPI endpoints as Model Context Protocol (MCP) tools, open to collabs and contributions!

    2025 · github.com

  11. 11AU

    2025 · github.com

  12. 12GC

    Hello HN, we're Andrew and Stephen from Keyboard (https://www.keyboard.dev/). After building AI tools for the past year, we recently made a YouTube video on building MCP servers and realized MCP is a total game-changer. It essentially lets AI do anything by connecting to your apps. But the deeper we dove, the clearer it became that security and privacy were complete afterthoughts. Coming from backgrounds at Okta and Stripe, this made us pretty uncomfortable. We kept seeing the same pattern: every app needs its own MCP server, each storing sensitive tokens, with minimal…

    2025 · github.com

  13. 13MF

    Hi, I am Anthony. Every token your filesystem tools consume is context the model cannot use for reasoning. Most MCP file servers are O(file size) on every operation: reads return the whole file, edits rewrite the whole file. The context window fills up before the agent gets anything meaningful done, and the problem compounds silently as your files grow. Chisel makes edits O(diff) and reads O(match). The agent sends a unified diff instead of a full rewrite, and queries with grep or sed instead of reading entire files. On a 500-line file this is nearly two orders of magnitude less context per…

    Mar 2026 · github.com

  14. 14OS

    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/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/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

  15. 15IB

    I've been experimenting with ROS (Robot Operating System) and the Model Context Protocol (MCP), and noticed a gap: while there were some MCP servers for ROS, most were limited. They either only supported topic communication or had hard-coded topic names, which severely limited their reusability. To address this, I built a general-purpose MCP server for ROS that allows interaction with ROS topics, services, and actions -making it more flexible and extensible than previous approaches. A key design decision was enabling communication between the MCP server and a local ROS machine by simply…

    2025 · github.com

  16. 16MT

    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,…

    Feb 2026 · github.com

  17. 17CA

    Hi HN — I'm the creator of FastMCP and wanted to share a new project we've open-sourced called Colin. I obviously love MCP, but I also use skills extremely heavily in my day-to-day work. Being exposed to both has made me very aware of a tension: - Anything with dynamic information, I ship over MCP. This takes work to set up and requires conversational boilerplate to refresh in every conversation. - Anything behavioral, I put in skills. They're lightweight, used automatically, and feel great. But I would never put dynamic information in a skill because keeping it up to date is a pain. And yet…

    Jan 2026 · github.com

  18. 18MI
  19. 19MC

    Hello HN! Earlier this year, we shared mcp-agent (https://github.com/lastmile-ai/mcp-agent) [1][2], a lightweight framework for building agents with MCP. Since then we have tried to push the protocol to the limits, including hosting agents as long-running tools on MCP [3], and seen other creative approaches surface (mcp-ui, chatgpt apps sdk). Today, we are launching mcp-c – a cloud platform designed for hosting any kind of MCP server, including agents, ChatGPT apps, etc. We are in open beta and free to use, and would love your feedback. Here are some key choices we made:…

    Oct 2025 · docs.mcp-agent.com

  20. 20OP

    Hello HN, Pietro here! I've been really excited to see the recent buzz around MCP and all the cool things people are building with it. Though, the fact that you can use it only through desktop apps really seemed wrong and prevented me for trying most examples, so I wrote a simple client, then I wrapped into some class, and I ended up creating a python package that abstracts some of the async uglyness. You need: * one of those MCPconfig JSONs * 6 lines of code and you can have an agent use the MCP tools from python. The structure is simple: an MCP client creates and manages the connection and…

    2025 · github.com

  21. 21AA
  22. 22WB

    The latest CLI releases from google and anthropic are sweet, we wanted build one that can run any model. mcp-use-cli lets you `/model` hop between providers instantly. npm i -g @mcp-use/cli && you're done What's cool: - BYOK (your keys, encrypted locally) - Slash commands for everything - MCP protocol support for custom tools - Works with OpenAI, Anthropic, Google, Mistral, Groq, local Ollama... The whole thing's TypeScript and open source. Built this on top of our Python + TS mcp-use libs, so it speaks MCP out of the box. You can hook up filesystem tools, DB servers, whatever you…

    2025 · github.com

  23. 23FA

    Hi HN -- Since Anthropic announced the Model Context Protocol (MCP) last week [1], I've been excited about giving Claude new capabilities through my custom servers. But while MCP is powerful, implementing the protocol correctly requires a lot of low-level boilerplate code. I found myself wanting something like FastAPI - a high-level framework that would let me focus on building features, not servers. After some hacking, I'm sharing FastMCP: a Pythonic framework for building MCP servers. FastMCP uses decorators to transform normal functions into MCP tools, resources, templates, and prompts,…

    2024 · github.com

  24. 24

    MCP server for Yandex Wiki with full-text search

    21d ago · github.com

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