The README is 100% just autogenerated by Claude. It looks like every README generated from these tools.
Can’t speak for the code since I haven’t peaked into it
jamesblonde [3 hidden]5 mins ago
I thought it was a bit verbose - lots of repetition.
I didn't realize how extensive claude/cursor generated READMEs were.
manojlds [3 hidden]5 mins ago
Almost no client, including Claude Dekstop, implements Sampling.
I was so excited to see if I can create a server that used sampling and quickly figured out I can't use it anywhere. Funnily Windsurf hangs forever if you use sampling.
esafak [3 hidden]5 mins ago
For those unfamiliar with the term:
"Sampling is a powerful MCP feature that allows servers to request LLM completions through the client, enabling sophisticated agentic behaviors while maintaining security and privacy."
I've been thinking about this ever since I heard that is defined in the protocol.
I think the biggest issue is that it can create loops in the flow of programs that would burn through usage quotas pretty fast. It could also allow for "impersonating" the client what opens up a lot of possibilities.
But yeah, the fact that Claude doesn't even implement this is... telling.
auggierose [3 hidden]5 mins ago
Yeah, that is the reason it is not there, I guess, you could then really implement anything just with a flat rate.
Yes, no sampling, last time I tried a few weeks ago. Have you tried with the latest Claude Desktop (0.10.14)?
baalimago [3 hidden]5 mins ago
The fact that this is an achievement is a testament to how bloated the MCP protocol/spec already is.
Will be interesting to see how many days it'll take before the implementation no longer is the latest
tomashubelbauer [3 hidden]5 mins ago
I don't disagree, but the first sentence of your post happens to be true for very many specs/protocols I know of and have implemented in the past. And it is not just communication protocols. Take PDF for example. The world practically runs on it, yet the file format is horrid. The real standard seems to be that standards are bloated by default.
Spivak [3 hidden]5 mins ago
Right but MCP is a brand new protocol which is at its core JSON-RPC formatted messages and a few verbs. It doesn't actually do much. The main things are tool definitions which is just a JSON schema describing a function call and resources which a is a wisp of a filesystem.
Tool annotations are missing. (Are they of any use though?)
cranberryturkey [3 hidden]5 mins ago
also checkout @profullstack/mcp-server on npm
jhosft [3 hidden]5 mins ago
That README.md is so vibed with all the emojis and self-proofed comments. One day we’re going to look back on code written in June 2025 and laugh. The code works, but man does Claude 4 pump itself up.
esafak [3 hidden]5 mins ago
The median code base it is trained on must be like that.
Albeit, it's a few weeks old so already in need of an update!
in the code it is "protocolVersion": "2024-11-05"
https://github.com/hemanth/paws-on-mcp/blob/main/src/mcp_cli...
Can’t speak for the code since I haven’t peaked into it
I was so excited to see if I can create a server that used sampling and quickly figured out I can't use it anywhere. Funnily Windsurf hangs forever if you use sampling.
"Sampling is a powerful MCP feature that allows servers to request LLM completions through the client, enabling sophisticated agentic behaviors while maintaining security and privacy."
https://modelcontextprotocol.io/docs/concepts/sampling
I think the biggest issue is that it can create loops in the flow of programs that would burn through usage quotas pretty fast. It could also allow for "impersonating" the client what opens up a lot of possibilities.
But yeah, the fact that Claude doesn't even implement this is... telling.
https://www.epicai.pro/using-mcp-sampling-in-vs-code-insider...
Will be interesting to see how many days it'll take before the implementation no longer is the latest
(mcp auth is terrible btw)
Then I pass the stored oauth token directly to my (private) MCP servers alongside a bearer token.