Quick Primer on MCP Using Ollama and LangChain
11–20 of 22 posts
Re: Quick Primer on MCP Using Ollama and LangChain
#12MCP is great for when you’re integrating tools locally into IDEs and such. It’s a terrible standard for building more robust applications with multi-user support. Security and authentication are completely lacking. 99% of people wouldn’t be able to find the API keys you need to feed into most MCP servers.
Authentication, session management, etc, should be handled outside of the standard, and outside of the LLM flow entirely.
I recently mused on these here; https://github.com/sunpazed/agent-mcp/blob/master/mcp-what-i...
Re: Quick Primer on MCP Using Ollama and LangChain
#13MCP is great for when you’re integrating tools locally into IDEs and such. It’s a terrible standard for building more robust applications with multi-user support. Security and authentication are completely lacking. 99% of people wouldn’t be able to find the API keys you need to feed into most MCP servers.
You are correct ... it is still early days IMHO ... will have to see how this evolves
Re: Quick Primer on MCP Using Ollama and LangChain
#14Is anyone really still using langchain? Has it gotten better? Seemed like a token burning platform the last time I used it.
Re: Quick Primer on MCP Using Ollama and LangChain
#15This website design is blessed. A great return to the past
It should be "Voilà", which is French for “there it is”.
Re: Quick Primer on MCP Using Ollama and LangChain
#16Is anyone really still using langchain? Has it gotten better? Seemed like a token burning platform the last time I used it.
I recently finished a Langgraph class on Deeplearning.ai about a week after it came out. Already then the provided Notebook example didn't work and I needed to debug it to pass. I had great hopes on Langchain in 2024, but their product decisions toward LCEL and the complete lack of a discernible roadmap that does not constantly break things made me move away from them.
What the heck? I have no idea what problem this is solving while not also creating new problems.
Re: Quick Primer on MCP Using Ollama and LangChain
#17Earlier quoted context omitted.
I recently finished a Langgraph class on Deeplearning.ai about a week after it came out. Already then the provided Notebook example didn't work and I needed to debug it to pass. I had great hopes on Langchain in 2024, but their product decisions toward LCEL and the complete lack of a discernible roadmap that does not constantly break things made me move away from them.
I had to look up LCEL: https://python.langchain.com/docs/concepts/lcel/ What the heck? I have no idea what problem this is solving while not also creating new problems.
Re: Quick Primer on MCP Using Ollama and LangChain
#18Is anyone really still using langchain? Has it gotten better? Seemed like a token burning platform the last time I used it.
Re: Quick Primer on MCP Using Ollama and LangChain
#19If you need to define and write the functions to calculate interest… what exactly is the llm bringing to the table here? I feel like I’m missing something.