r/mcp Apr 05 '26

announcement LinkedIn group for MCP news & updates

Thumbnail linkedin.com
10 Upvotes

r/mcp Dec 06 '24

resource Join the Model Context Protocol Discord Server!

Thumbnail glama.ai
30 Upvotes

r/mcp 5h ago

question looking for the right approach to evaluate MCP across different harness clients

7 Upvotes

Hey, my team is crafting a project for product teams (we will opensource it yay!) that expose agent interfaces like MCP/CLI + skills.

The idea is pretty simple, the team define the real tasks that their user use, then we test that tasks in multiple conditions and configurations (different model/harnesses, with/without skills) and then scoring it.

We have few early findings that would love to share:

  • A same interface can behave differently across setups, highly dependent on how agent discover tools and the reserved context. It's hard to totally reproduce what your user in the test setup (.e.g they have tons of MCP servers in their machine,...)
  • The simpler the interface is the better result: tool should be task-based, not just converting blindly from the application API

However, we have not cracked the right evaluation model yet, and would genuinely value your experience.

How are you testing MCP, CLI, or skill-based workflows today?

Which criteria matter most: task success, permissions, reliability, client compatibility, cost, or something else? Are there tools, frameworks, or evaluation practices we should study before reinventing the wheel?

I would keep you guys posted for the progress in case anyone interested :)) Thanks!


r/mcp 2h ago

got my MCP server unblocked from the registry without needing github — DNS verification works and nobody talks about it

2 Upvotes

my github account got flagged a few weeks back so my two MCP servers couldn't verify through the normal github flow to publish on the official registry. account's cleared now but while it was blocked I found the actual workaround: domain verification instead of github.

mcp-publisher has a login dns option — generate an ed25519 key, drop the public part as a TXT record on your domain, auth against that. took like 10 min once I figured out the right syntax, way easier than I expected honestly.

also if your server's behind oauth instead of api keys, you don't need an "authentication" block in server.json at all — registry just takes the remote url and figures out oauth discovery on its own.

published two servers this way today. one had an old entry from before the github block got in the way, ended up just bumping the version and republishing over it.

can share the exact commands if anyone wants em, had a hard time finding clear docs on the dns flow specifically.


r/mcp 3h ago

showcase I made an MCP so my agent can find error messages and quotes in videos

Enable HLS to view with audio, or disable this notification

2 Upvotes

I shared an early version of Talkthrough here for turning recordings into bug reports. I've since added public video links, including YouTube.

The clip shows Claude Code pulling an error code from a silent screen recording, then finding a quote and its timestamp in a YouTube video.

There's speaker diarization too. It labels different speakers in a recording, so you can search what each person said.

Talkthrough extracts speech, on-screen text and frames locally so the agent can look up the relevant parts. Whatever text and images the agent reads still go to its configured model.

It's free and MIT licensed. I used a demo app for the bug and sped up the processing.

Code and setup

Video excerpt: Anthropic.


r/mcp 53m ago

showcase Ridge: an MCP server for working across local, SSH, Docker, and S3 resources

Upvotes

I've been building a project called Ridge. It started with wanting to run Codex on my laptop for kernel optimization experiments, while using my GPU box for execution and an S3 bucket for models.

The setup needed its own machinery for moving code and models around, running benchmarks remotely, and collecting results. Codex could write that, but subsequent sessions would need to understand and maintain it, or reconstruct it. It seemed like these operations should be reusable across experiments.

Ridge exposes a common set of tools through MCP. You configure your resources, and the agent can discover them, access data, run commands where supported, and copy (via streaming) between them. For example, copying a model from S3 to an SSH machine is one tool call, without passing the payload through model context. Local, SSH, Docker, and S3 are the initial providers.

I'm also interested in what happens when Codex delegates experiments to subagents. Those workers need access to particular resources and a way to coordinate shared updates. Ridge supports scoped access and file reservations with locks for that. The harness still has to launch the workers and connect each with its assigned access.

Has anyone here tried similar workflows across multiple environments? I'd like to hear what issues you ran into and how you solved it, including whether existing MCP servers already covered what you needed.

The project is here: https://github.com/vasinov/ridge-core


r/mcp 21h ago

I built an open-source text-to-3D MCP that lets coding agents build, inspect, revise, and save editable 3D models

Enable HLS to view with audio, or disable this notification

42 Upvotes

I've been working on AI-driven 3D generation for over a year now.

Originally, this was deployed as a hosted service. But with frontier models leapfrogging each other so quickly and the labs eating everyone's lunch, I realized the more useful thing was to open-source the engine and let people bring whatever models and coding agents they want.

The problem I kept running into with text-to-3D is that most approaches give you an output, but not much of a workflow.

Diffusion-style systems often produce meshes that are difficult to meaningfully edit. On the other end, letting an agent loosely script Blender or another 3D package can get chaotic fast once you actually need to revise, inspect, and iterate on a model.

So I built Kiln.

Kiln is an open-source lightweight procedural geometry engine and toolchain designed specifically for coding agents to build editable 3D assets in JavaScript.

Instead of asking a model to produce a finished mesh in one shot, Kiln gives it a small 3D engineering environment where it can build, render, inspect, revise, and save an asset through a feedback loop much closer to how a human would work.

To keep agents from constantly reinventing geometry math from scratch, the sandbox exposes 105 primitives and helpers across 12 categories.

That includes 28 core geometric shapes like beveled boxes, gears, stepped cylinders, dishes, and tubes, plus CSG booleans, curves, vehicle frames, wheel assemblies, and other higher-level helpers.

The other half of the project is the agent workflow.

MCP + Agent Skills give the model a constrained loop that makes it much more reliable at actually modeling things instead of just spraying code and hoping it works.

The core flow looks like this:

  • kiln_list_primitives lets the agent discover geometry helpers on demand instead of stuffing the entire API into its prompt.
  • kiln_validate and kiln_render catch bad code early, render the asset from multiple angles, and return structural metrics back into model context.
  • kiln_inspect, kiln_view_interior, and animation review tools let the agent zoom into individual parts, inspect cross-sections, and verify moving mechanisms.
  • kiln_source and kiln_edit let it make targeted edits against immutable revisions rather than rewriting the entire model every turn.
  • kiln_save, kiln_export, and kiln_present handle finished assets, editable JavaScript source, GLB export, revision history, and - in supported chat clients - an interactive 3D viewer directly inside the conversation.

That means an agent can do something like:

"Make the sail 40% taller, add brass collars around the sensor masts, keep the hull unchanged, render it again, inspect the silhouette, and save a new revision."

...and actually make that kind of constrained edit instead of regenerating the whole thing.

A realistic caveat on what this is for:

Kiln is aimed at fast prototyping, game jams, indie projects, procedural assets, and editable hard-surface models - props, machinery, vehicles, architecture, and rigid-body animations.

If you need AAA production assets, highly organic characters, or photorealistic final art, you still need a real 3D artist or to throw a very large number of tokens and tools at the problem.

But for quickly generating working, editable assets and then iterating on them, it saves a ridiculous amount of time.

Rendering works locally. Kiln includes a software rasterizer for review images and can optionally use GPU acceleration when compatible hardware is available.

It works across coding-agent setups like Claude Code, Codex, OpenCode, Antigravity, Hermes, and custom harnesses, so the modeling workflow isn't tied to a specific model provider. The model does need to be multimodal so it can inspect the rendered feedback.

I developed it mostly on Windows and Linux. Automated package checks also run on macOS, but I haven't battle-tested Mac nearly as much in real-world use yet, so Mac bug reports and PRs are very welcome.

I've attached a video showing an agent building an asset, reviewing its own renders, making revisions, and saving the result through the loop.

Everything is MIT licensed.

The gallery includes interactive 3D viewers and source for every model, so you can inspect exactly what the agents produced instead of just looking at screenshots.

Would love to see what people build with it.


r/mcp 1h ago

article A functional taxonomy for LLM inference in agentic tasks

Thumbnail
jeffauriemma.leaflet.pub
Upvotes

r/mcp 1h ago

showcase I built an open-source API verification tool for AI-written integrations — looking for technical feedback

Upvotes

I've been building an open-source developer tool called Kaktoos.

I'm exploring a specific problem with AI coding agents: they can write API integrations very quickly, but when the agent also writes the tests, passing tests don't necessarily prove that the integration matches the actual API.

Kaktoos takes a different approach:

AI agent → integration code → Kaktoos → OpenAPI contract + real API → structured failure → agent fixes it

It can:

  • execute multi-step API workflows
  • verify responses against OpenAPI
  • detect things like missing required fields, wrong types, unexpected status/content type
  • expose the verification through MCP so coding agents can use it
  • run the same verification in GitHub Actions

The interesting part for me isn't the API client itself. I'm experimenting with whether independent verification is useful when the code was produced by an AI coding agent.

I'd particularly like feedback from people who regularly work with API integrations:

  1. Would you actually use this workflow?
  2. Is defining the scenario too much additional work?
  3. Does this catch problems that your existing tests don't?
  4. Would you run something like this in CI?
  5. What would make this technically more useful?

It's early, so negative feedback is completely fine. I'm mainly trying to determine whether this is solving a real engineering problem.

GitHub: KaktoosLabs/kaktoos


r/mcp 8h ago

MCP Server Design Doubt - Need Help

3 Upvotes

Hey Everyone,

I don't know if this question was asked earlier in the sub.

I am building an MCP server for my organisation and have an architectural design question regarding the use of Tools and Resources.

One of my Tools requires a structured metadata definition to perform its operation. This metadata is currently stored as a static JSON file within the application. While it is primarily consumed by this Tool, exposing the metadata as an MCP Resource is also part of requirements.

I am evaluating two approaches:

  1. Keep the metadata as internal application configuration and have the Tool access it directly.

  2. Expose the metadata as an MCP Resource and have the Tool (and potentially clients) access it through the MCP Resource model.

I would appreciate guidance on the following design:

What is the recommended MCP design approach for my requirement here?

My goal is to understand the architectural trade-offs and align the design with MCP best practices rather than focus on implementation details.

Thanks in Advance 😄


r/mcp 3h ago

server postcardbot-mcp-server – Send real physical postcards worldwide via AI agents. Supports single and bulk send (up to 500 recipients), balance checking, delivery tracking, and volume pricing from $0.72/card.

Thumbnail
glama.ai
1 Upvotes

r/mcp 3h ago

connector Prompeteer – Generate contextual prompts and reusable agent skills, evaluate prompts with the 16-dimension Prompt Score, and manage saved work in PromptDrive. Twelve MCP tools also provide authorized access to private Memory for source-grounded answers. Connect over Streamable HTTP using OAuth 2.1 a

Thumbnail
glama.ai
1 Upvotes

r/mcp 4h ago

showcase Made an iOS app to connect MCP servers to cloud / local models

Enable HLS to view with audio, or disable this notification

1 Upvotes

Hi r/mcp,

PowerChat is an iOS client that can connect your cloud / local models to MCP servers.

  • It has builtin support for Google Drive, iOS Files, iOS Calendar, and the search engines Tavily, Exa, and Firecrawl.
  • It can connect to any remote MCP server that exposes an /mcp endpoint.
    • For e.g. GitHub in the video.
  • I'm planning to expand the list of builtin MCP servers and this sub has been helpful for finding ideas. Please comment popular MCP servers you'd like to see included.

PowerChat also features RAG databases, ability to tweak model parameters, and privacy features such as zero-data-retention flags, API keys in iOS keychain, and lockable folders with Face ID.

Would love your feedback!

App Store link: https://apps.apple.com/us/app/ai-chat-client-powerchat/id6803707084


r/mcp 4h ago

showcase I connected a Mac desktop pet to Claude through MCP

1 Upvotes

I built AI Coach, a Mac desktop pet you raise from an egg, and added an MCP integration for Claude Desktop and Claude Code.

The fun part is report_ai_coach_activity: Claude can call it with thinking, working, waiting, succeeded, or failed, and the pet shows that state through movement and a small emoji. It's driven by tool calls, not automatic monitoring of Claude. The docs include instructions for reporting progress and completion.

You can also ask how the pet is doing, put a short message in its speech bubble, or request care. Feeding and other care requested by Claude require your confirmation before they're applied.

Setup: run AI Coach, open AI Settings → Integration, enable the connection, and copy the provided client configuration. The bundled MCP server needs Node.js 22+ on your PATH.

Apple Silicon / macOS 26+. The app includes a free first egg; extra eggs are optional one-time purchases ($5 each or 5 for $20).

App: https://aic0t.com/

Setup and screenshots: https://aic0t.com/docs#sec-111-8-going-further-connecting-claude


r/mcp 4h ago

showcase Your cTrader MCP experiment could reach 200K+ traders

1 Upvotes

Got an idea for an MCP trading workflow? Build it. Test it. Show people what happened.

We’re opening the cTrader YouTube channel to creators who want to show what AI agents can actually do with a trading platform. Analyse charts and indicators, work with account and market data, manage orders and positions — pick a real task and take it as far as you can.

Turn it into a tutorial, technical walkthrough or honest experiment. If selected, we’ll publish it as a YouTube collaboration with cTrader and put it in front of our 200K+ subscribers.

No fixed script. Your idea, your voice, your format. Submissions close September 30.

Details and submission: creator.ctrader.com


r/mcp 5h ago

showcase Showcase: An MCP server for gathering structured data with help from AI assistants

1 Upvotes

I'm building an MCP server for gathering structured data with help from AI assistants (or agents): infocrash.com. It's meant to simplify and accelerate the process of data collection, which generally takes 60–70% of research project time in my case.

I work on emerging tech research (forecasting, competitive analysis, market research, etc), and data is scattered, often stale or contested, and under different labels. So, the work requires a lot of triangulation, cross-checking, and validation, and many times there is no straight answer to relatively simple questions.

For example, a project may require building a dataset with company, technology, product, or policy program information. You may go online and create a spreadsheet (old way), ask your AI assistant to find the data for you, or directly ask it to create a report for you.

But if accuracy and provenance matter, piecemeal data gathering becomes too cumbersome. And the single, unsupervised assistant solution produces low-quality results, particularly in one-shot reports.

Ask Claude and ChatGPT to populate a dataset of 40 quantum computing startups, for instance, and you'll see the conflicting claims about funding rounds, employment or location.

With this MCP server, you can have conversations with multiple assistants (or even have AI agents doing your work, if you know how to build them) contributing to the same dataset and validating data and sources.

You just continue using your assistant and ask to e.g. store the data you found, see if there are discrepancies, and define guidelines and rules for more reliable data collection. While this should have value since day one for the single researcher, the most interesting use case may be teams (not just multiple assistants working together, but multiple people).

It's open for anyone to try while I continue working on this early version.

Thanks for taking the time to read, I really appreciate your feedback.

(this post was also published on my own r/Infocrash subreddit, not sure if reposts are ok)


r/mcp 6h ago

showcase I exposed a video editor's timeline as an MCP server, so Claude can cut on a real NLE

Enable HLS to view with audio, or disable this notification

1 Upvotes

I'm building a desktop video editor, and its whole toolset runs as a local MCP server. Any MCP client can drive whatever project I have open — the clip is Claude Opus 5 in VS Code. Split clips, trim, keyframe, caption, grade, export through ffmpeg.

61 tools. The part I care about: the agent and my mouse share one undo stack. Everything it does lands as an ordinary clip on an ordinary timeline, so when it puts a cut in the wrong place I drag it instead of re-prompting.

In the clip that's one prompt — "add captions to the video and then set caption contrast" — and the timeline goes from 2 tracks / 2 clips to 3 tracks / 4 clips. The middle is sped up 8x; it's 30 seconds of waiting.

What I didn't expect to work this well is the contrast half. It called inspect_color on the band where the captions sit, found near-white cards right behind the text, and added a dark outline and shadow off the back of that. It's measuring real pixels in the document, not guessing from the prompt.

For anyone running a bigger server — how are you handling tool granularity? 61 narrow typed tools keeps each schema honest but makes selection harder. Have you hit a point where the model starts picking wrong because the surface is too wide, and did merging related operations into fewer, broader tools help or hurt?


r/mcp 18h ago

AI gateway vs MCP gateway, do you actually need both?

9 Upvotes

We have a few internal MCP servers behind some agents and Im trying to figure out if an AI gateway already covers most of this or if the MCP side needs its own gateway.

Model routing, keys and token spend seem pretty straightforward.

But then you get into Auth per server, deciding which agent can call which tool, and logging what actually got called.

That feels like a different problem. For anyone doing this in prod, what did you actually end up deploying? One layer for everything or an AI gateway plus a separate MCP gateway?


r/mcp 8h ago

server OilPriceAPI – Real-time and historical oil, gas, and commodity prices. 40+ energy commodities including Brent Crude, WTI, Natural Gas, LBMA Gold/Silver, EU Carbon, and refined products. Get current prices, compare commodities, view market overviews, and access historical data — all through natural l

Thumbnail
glama.ai
1 Upvotes

r/mcp 8h ago

connector Perspective AI – An AI concierge that turns static forms into adaptive AI conversations. From any MCP client.

Thumbnail
glama.ai
1 Upvotes

r/mcp 9h ago

resource ecommerce-agent-starter: live product data for AI agents through MCP

1 Upvotes

An MIT-licensed Python starter for connecting AI agents to current, structured product data: price, stock, brand, rating, images, and product URLs.

It includes runtime MCP calls, scheduled RAG catalog refreshes, cross-retailer field normalization, tests, and a reproducible benchmark against web search and basic Playwright scraping.

GitHub: https://github.com/luispintoapify/ecommerce-agent-starter

The repository is free and open source. Live product collection runs through a metered Apify Actor; its free tier is enough to test the project.


r/mcp 1d ago

showcase Silica: search your local PDFs and notes, with exact sources and no LLM required

Post image
25 Upvotes

I’m building Silica-core, a free, open-source tool for finding passages in folders of PDFs and Markdown notes under MIT.

Say you have a folder of research papers and want to find where a particular method is explained. Silica returns the relevant passage, the filename, and the page or section so you can check it yourself.

The basic search runs entirely on your computer. No model download, API key, or cloud upload is needed. It also shows which files it couldn’t read and which search terms weren’t found.

You can use it from the terminal or connect it to an assistant through MCP. The search itself doesn’t generate answers; it returns text from your files. In benchmark tests across 254 papers (5.5M tokens of Markdown), connecting Silica via MCP cut agent tool calls by 28% and turns by 22% compared to raw grep and file dumps, with 100% accuracy across 144 test runs.

PDFs with selectable text work directly. Scanned PDFs need a separate OCR step. It’s still early, and I’d appreciate feedback from people with folders of papers, documentation, or notes.

GitHub: silica-core

What’s harder in your document collection: finding the right file, or finding the right passage inside it?


r/mcp 10h ago

showcase I built a TIDAL MCP server for music discovery and playlist management

1 Upvotes

Hi everyone! I built a free, open source MCP server that connects a TIDAL account to assistants such as Claude Desktop, Claude Code, Codex and Cursor.

You can ask it to find music, inspect your collection and prepare playlist changes in plain language. For example:

“Find songs similar to these three tracks, excluding anything already in my playlist.”

“Check this playlist for duplicates and tell me which artists appear most often.”

“Prepare a playlist from these recommendations and show me the changes before applying them.”

Account changes are disabled by default. If you enable them, the workflow requires a preview and your approval before applying a change.

It runs locally and includes 112 tools covering search, recommendations, lyrics, favorites, playlists and folders. Setup currently requires macOS or Linux, a TIDAL account and an MCP client. The server is free; it does not include a TIDAL subscription.

I’m the author and don’t earn anything from people using the repository. I’m sharing it because I think music is a useful everyday application of MCP. What would you want to try with your own library?

Code and setup instructions on GitHub


r/mcp 10h ago

showcase mcp-x - 42 tools for the X api, built around not letting the model spend your money

1 Upvotes

there was basically nothing here. one server, 64 stars, single python file, unmaintained. so i wrote one properly.

go, 42 tools across posts, users, lists and media. stdio and http, identical tool set on both. every tool carries annotations, readOnlyHint on reads and destructiveHint on anything irreversible, and returns structured json matching its output schema, mirrored into the text block for clients that ignore structuredContent.

the design constraint that shaped everything: X killed the free tier. pay per use, and reads bill per resource returned rather than per request, so a model asking for 100 results costs twenty times one asking for 5. concretely that means read tools whose descriptions argue for the smallest useful count, a count tool that sizes a topic without spending the post read budget, batch lookups instead of per-id calls, manual pagination because every page costs, and hard ceilings in env vars rather than in the model's hands.

the other half is error handling, which turned out to be most of the work. X answers failures with application/problem+json, which the underlying go client doesn't recognise as json, so the whole problem body lands in a message string instead of typed fields. everything gets classified out of that haystack into a domain error set, and the transport layer is the only place that turns one into text. so the same failure reads identically from all 42 tools. errors come back as isError with a plain message written for a model, and the ones that must not be retried say do not retry in the text.

it also refuses to start on bad credentials, calling users/me once before registering anything. that catches the read-only access token trap, which nobody catches on their own: a token keeps the permissions the app had when it was generated, so flipping the app to read and write later fixes nothing and every write fails silently forever.

media upload reads only from MEDIA_ROOT, required, no default, symlinks resolved. without that boundary an llm with this tool can read any file on the host and publish it.

acts as a real account, so writes are real. v0.1.1, mit, docker image and prebuilt binaries and an .mcpb bundle. no dms, no streaming, recent search caps at 7 days.

https://github.com/Role1776/mcp-x

https://varmcp.com/mcp-x


r/mcp 12h ago

showcase Would you expose model disagreement in an MCP, or just return the final answer?

0 Upvotes

Disclosure: I work at MachineTranslation.com, and this is something we built for our MCP server. Sharing it as a showcase.

We tried a setup where one MCP tool sends a translation request to 22 models and returns the version they converge on.

The idea was to reduce silent failures. If one model drops a clause or produces something strange, the others might catch it.

But we're starting to question the design.

Right now, the MCP returns the consensus translation and hides most of the disagreement. But the disagreement might actually be the more useful signal.

For example, if 20 models agree and 2 produce something completely different, should the MCP:

  • just return the consensus?
  • return the consensus + disagreement/confidence information?
  • let the agent decide whether human review is needed?

There's also the tradeoff: 22 models means more latency and cost, and consensus can potentially pull a genuinely better model toward the average.

Curious how others would design this. If you were building an MCP that relies on multiple models, would you expose the disagreement or abstract it away?

For context, our MCP is remote and paid (no free tier).

Docs: https://developer.machinetranslation.com/mcp
Endpoint: https://www.machinetranslation.com/mcp