Are there any other Desktop apps other than Claude's supporting this?
Model Context Protocol
41–50 of 283 posts
Re: Model Context Protocol
#42I don't understand the value of this abstraction. I can see the value of something like DSPy where there is some higher level abstractions in wiring together a system of llms. But this seems like an abstraction that doesn't really offer much besides "function calling but you use our python code". I see the value of language server protocol but I don't see the mapping to this piece of code. That's actually negative va…
When you think about it, function calling needs its own local state (embedded db) to scale efficiently on larger contexts.
I'd like to see all this become open source / standardized.
Re: Model Context Protocol
#43Re: Model Context Protocol
#44Hmm I like the idea of providing a unified interface to all LLMs to interact with outside data. But I don't really understand why this is local only. It would be a lot more interesting if I could connect this to my github in the web app and claude automatically has access to my code repositories. I guess I can do this for my local file system now? I also wonder if I build an LLM powered app, and currently simply to R…
However, it's not quite a complete story yet. Remote connections introduce a lot more questions and complexity—related to deployment, auth, security, etc. We'll be working through these in the coming weeks, and would love any and all input!
Re: Model Context Protocol
#45How is this different from function calling libraries that frameworks like Langchain or Llamaindex have built?
Re: Model Context Protocol
#46@jspahrsummers and I have been working on this for the last few months at Anthropic. I am happy to answer any questions people might have.
Super cool and much needed open-standard. Wondering how this will work for websites/platforms that don't have exposed API's (LinkedIn, for example)
Re: Model Context Protocol
#47i am curious: why this instead of feeding your LLM an OpenAPI spec?
It's not about the interface to make a request to a server, it's about how the client and server can interact. For example: When and how should notifications be sent and how should they be handled? --- It's a lot more like LSP.
Re: Model Context Protocol
#48Re: Model Context Protocol
#49Earlier quoted context omitted.
Followup: is this a protocol yet, or just a set of libraries? This page is empty: https://spec.modelcontextprotocol.io/
Sorry, I think that's just the nav on those docs being confusing (particularly on mobile). You can see the spec here: https://spec.modelcontextprotocol.io/specification/
Thanks for your hard work! "LSP for LLMs" is a fucking awesome idea
Re: Model Context Protocol
#50@jspahrsummers and I have been working on this for the last few months at Anthropic. I am happy to answer any questions people might have.