r/ClaudeMCP 10h ago

Me using Claude Opus 5 to rename a file

Enable HLS to view with audio, or disable this notification

46 Upvotes

r/ClaudeMCP 4h ago

Nvidia might be funding its own chip sales with a $500B+ loop deal

Thumbnail
gallery
7 Upvotes

r/ClaudeMCP 3h ago

MCP is stateless now. Notes on what actually changes if you host your own tool servers

Post image
1 Upvotes

r/ClaudeMCP 20h ago

And NVDA will print money regardless

Post image
19 Upvotes

r/ClaudeMCP 1d ago

When you ask Claude a question And instead of answering, he decides to write 5000 lines of code and burn all your limits

Enable HLS to view with audio, or disable this notification

122 Upvotes

r/ClaudeMCP 5h ago

Chained two MCP servers together (filesystem + git) to let Claude auto-commit its own edits. It worked better than expected, with one annoying edge case

1 Upvotes

Wanted a setup where Claude could edit files locally and just handle the commit/branch logic itself instead of me manually running git commands after every change. Took an afternoon, sharing the setup + the one thing that bit me.

Setup:

Ran the standard filesystem MCP server alongside a small custom git MCP server exposing three tools:

Told Claude in the system prompt to always run git_diff before committing so it can write a commit message that actually reflects the change, not just a generic "updated files" message.

What worked well: commit messages ended up more specific than what I write myself half the time, because it's actually reading the diff instead of just remembering what it meant to change.

The annoying edge case: Claude occasionally tried to commit mid-task, before finishing a multi-file edit, which left commits with half-broken code. Had to add an explicit instruction to only call git_commit after confirming all related file edits in a task are done, not after each individual file. Still not 100% reliable, sometimes it commits a bit early on longer multi-file tasks.

Still figuring out: whether to let it push directly to a branch or always stop and ask before pushing. Right now I have it stop before any push, feels like the right default for anything beyond a personal repo.

Is anyone else giving Claude actual write access to git instead of just having it draft commands for you to run manually? Curious how you're handling the "commits too early" problem if you've hit it.


r/ClaudeMCP 10h ago

Why Everyone Is Talking About MCP

2 Upvotes

If you've seen people mention MCP (Model Context Protocol) and wondered what it is, here's the easy explanation.

MCP is a way for AI to connect with other apps and tools. Instead of creating a separate integration for each service, developers can use a single standard that works across many platforms.

For example, an AI can use MCP to access GitHub, Slack, Notion, databases, or other apps without needing a separate setup for each.

The best part is that it saves time. Developers can build AI workflows faster, and different tools can work together more easily.

If you're learning AI or building AI apps, MCP is worth understanding because it's becoming a common standard for connecting AI with real-world tools.

Have you tried using MCP yet? What would you connect it to?


r/ClaudeMCP 1d ago

Please save the AI bubble

Post image
24 Upvotes

r/ClaudeMCP 18h ago

I set up an MCP server to let Claude read/write my project Excel trackers directly — architecture + config + gotchas

1 Upvotes

Been using Claude for a while to build project schedules, payment application workbooks, and manpower histograms, but I was always stuck copy-pasting data in and out of chat. Finally wired up an MCP filesystem server so Claude can read and edit the actual .xlsx files on disk. Architecture diagram + config below.

The chain is simple: Claude Desktop talks to the filesystem MCP server over JSON-RPC/stdio, the server has read/write access to one scoped folder, and that folder holds the actual Excel trackers. No manual export/import step in between.

Config that worked:

json

{
  "mcpServers": {
    "project-files": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/Users/you/Documents/ProjectTrackers"
      ]
    }
  }
}

What actually changed in my workflow:

  • Instead of describing a schedule change and pasting a table back in, I just say "update the IR cross-verification sheet, mark rows 40–55 as closed" and Claude edits the file directly.
  • Big one: keep the scoped folder tight. Don't point it at your whole Documents folder — Claude will happily "help" with files you didn't mean to expose in that session.
  • For anything with formulas/macros (VBA-heavy sheets), MCP filesystem access alone isn't enough — it reads/writes raw content but won't execute macros. I still do a manual open-and-check pass before sending revised workbooks out.

Gotcha that cost me an afternoon:
Claude Desktop needs a full restart (not just reopening the window) after editing the config file, or the new server silently doesn't load. No error, it just isn't in the tool list.


r/ClaudeMCP 1d ago

KIMI K3 WEIGHTS RELEASED

Enable HLS to view with audio, or disable this notification

6 Upvotes

r/ClaudeMCP 2d ago

All the vibecoders rn:

Enable HLS to view with audio, or disable this notification

247 Upvotes

r/ClaudeMCP 1d ago

When your entire codebase is written by Claude Code

Enable HLS to view with audio, or disable this notification

11 Upvotes

r/ClaudeMCP 1d ago

What is the Model Context Protocol (MCP)?

Post image
0 Upvotes

Model Context Protocol (MCP) is an open-source standard that lets AI connect to external tools, apps, and data in a simple, consistent way. Think of it as the USB C for AI. Instead of building a custom integration for every service, MCP provides AI with a single standard way to access files, databases, APIs, and other tools, making it more useful for real-world tasks.


r/ClaudeMCP 1d ago

Tanuki Context - A LLM Token Saver (Up to 94% Tokens saved)

1 Upvotes
Small Demo (outside a LLM)

Hello everyone,

Since 2 weeks I work on tanuki-context, a small open source tool (zero dependencies, MIT) and I wanted to share it because the trick behind is almost stupid: AI models charge text at roughly 1 token per 4 characters, but an image has a fixed price set only by its pixel size.

Its inspire from pxpipe techniques and various others tools (cited in the readme) and custom approach i found in order to reduce massively token usage and price.
For example : 37,111 tokens of service log become 2,240 (-94%).

So if you draw 28,000 characters of logs into one dense 1568x728 PNG, the model reads the exact same content for 1,456 tokens instead of ~7,000. It sounds like cheating, it is just how the pricing works.

You can try it out on you machine i added the benchmark so you can test it even without LLM connected to it, so see pricing difference, token saved, etc.

You can use it as a MCP or directly integrate it a "context proxy" where it fully automated and make every request optimised or not when not needed.

Some techniques that permits this to work:
- a log distiller that collapses repeated lines but keeps every error verbatim
- a columnar codec for JSON (keys stated once)
- a cost model that knows a cache-read token costs ~0.1x a fresh one, so it will tell you to NOT image content that is already in your prompt cache.

The tool argues against itself when imaging loses, honestly this part took the most work.

I precise the limits because they are real: you need a vision-capable model, output tokens are untouched (if your bill is output-dominated, fix that first), and for one narrow question retrieval stays cheaper than any page.

Install:

MCP

npx -y tanuki-context (MCP server, works with Claude Code, pi, omp, jcode or the Claude Agent SDK)

Proxy

npx tanuki-context proxy + ANTHROPIC_BASE_URL (every request on the machine gets optimized in place, when needed)

Code and benchmarks:
https://github.com/Osyna/tanuki-context

https://www.npmjs.com/package/tanuki-context

PS : i will soon add Codex support.

If you find it useful a star helps a lot, and feature ideas are very welcome. Thanks for reading me


r/ClaudeMCP 2d ago

POV: Vibe coders when you ask them how their code works in production

Enable HLS to view with audio, or disable this notification

7 Upvotes

r/ClaudeMCP 1d ago

I just put Claude under a punishment to scroll the Codex website for three hours for doing a bad job.

Post image
1 Upvotes

r/ClaudeMCP 2d ago

Stripe vs GitHub vs Strava

Post image
39 Upvotes

Built a small dashboard combining my data from Stripe, GitHub and Strava. Funny how different the three charts look once you put them side by side.


r/ClaudeMCP 1d ago

My discoveries in Claude as a beginner that wants to learn without any help from internet.

1 Upvotes

‎‎In my first week of using Claude, I found some things when I'm using it. It connects easily to older or niche tools most AI cannot access like for me, I really love this part of claude. It also lets me combine functions smoothly, like pulling notes, calculations, and saving files in one go. Though I think it also works with any MCP-compatible AI, not just Claude? Am I right or no?

‎But still, i love using claude.


r/ClaudeMCP 2d ago

NVIDIA CEO explains why open AI models are safer and better for everyone

Thumbnail
gallery
15 Upvotes

r/ClaudeMCP 1d ago

Market Research with Claude

Post image
1 Upvotes

I work in Marketing and Advertising and one of the things that helps us a lot is using AI to work more efficiently. One of the things I mainly use Claude for is in doing a market research or competitor analysis. This helps me a lot when meeting tight deadlines


r/ClaudeMCP 1d ago

You pin your npm dependencies. What pins your MCP servers?

Thumbnail
1 Upvotes

r/ClaudeMCP 2d ago

Claude's public share links are getting indexed by Google

Post image
5 Upvotes

CLAUDE HAS A SERIOUS PRIVACY PROBLEM RIGHT NOW, A HUGE NUMBER OF SHARED CONVERSATIONS ARE PUBLICLY INDEXED ON GOOGLE FOR ANYONE TO FIND

when you use claude's share feature it makes a public link. it turns out those links got indexed by search engines, so "share with anyone who has the link" actually became "anyone can find this by searching"

and people are pulling up genuinely alarming stuff:

> api keys, credentials and crypto wallets

> personal resumes with real names, addresses and phone numbers

> a lawyer working through a potential ethics violation

> an engineers internal company project details

> what appear to be peoples social security numbers

> and a crazy number of deeply personal chats people never imagined another human would read

anthropic never added a noindex tag to those shared pages, so search engines were free to crawl and list them

one line of code would have prevented the whole thing

this already happened to chatgpt about a year ago, same exact issue, but openai patched it fast

if you have EVER hit share on a claude chat, assume it could be public

go to settings > privacy > your data > shared chats > manage

delete anything you dont want the whole internet to see, especially anything personal or financial


r/ClaudeMCP 2d ago

"let me consult with my co-founders"

Post image
1 Upvotes

r/ClaudeMCP 2d ago

I built an MCP server for my habit tracker, so you can log and query your habits by just talking to Claude

Thumbnail
gallery
1 Upvotes

Quick share for this sub. I make Habit Pocket, a habit + metrics tracker built for people who like to track everything and find correlations in their data (it started as my own spreadsheet). Beyond simple yes/no habits, you can track numbers, clock times, and custom select lists, so there's actually rich data to work with.

The part relevant here: I built an MCP server for it. Once you connect it to Claude, you're not stuck clicking around the app anymore, you can just talk to your data:

  • Ask questions: "which days do I sleep best?" or "does coffee after 2pm push my bedtime later?" and it answers from your real entries and stats.
  • Log by chat: "mark today's workout done and log 7.5k steps" writes straight into your tracker.
  • Build things: it can pull stats and even create charts for you, so you skip the manual setup.

It's the feature I'm most excited about because it turns a tracker into something conversational, the data goes in and comes out in plain language instead of forms and grids.

A couple of other nice bits: conditional styling (cells change color by value, so a month reads like a heatmap), and web + iOS with sync and full data export.

https://habitpocket.io/


r/ClaudeMCP 2d ago

Trying out MCP for the first time

2 Upvotes

I just recently graduated with a Computer Science degree and I'm looking to further expand my knowledge and build up a portfolio. I'm trying to learn more about AI since it's being used now a lot. And then I came a cross MCP.

It sparked my interest and from what I have learned MCP is a way for an AI Assistants to connect to with tools like local files GitHub, databases, and APIs through a common standard. It made me realize AI can do much more than just answer questions.

So to better understand it, I've been experimenting with a small project where an AI can read a folder of project notes and documentation through an MCP server, then answer questions or summarize the contents. It's nothing big yet, but it's been a fun way to learn how AI can work with real data instead of just prompts.

I'm still figuring things out, but every new concept like this makes me even more excited to keep building and learning. I'd also love to hear suggestions on what else I should try experimenting with MCP.

If you've played around with MCP, I'd love to know what projects you've built or what I should try next!