Will Anthropic's MCP work with other LLMs? - YES, with Amazon Bedrock.

  Рет қаралды 5,357

mikegchambers

mikegchambers

Күн бұрын

Пікірлер: 41
@JimMendenhall
@JimMendenhall 8 күн бұрын
Thanks for going deeper into this than just reading the project home page. We need more videos like this where people explore deeper.
@mikegchambers
@mikegchambers 8 күн бұрын
Glad you found it interesting. Thanks for the feedback Jim!
@antonwiesler3540
@antonwiesler3540 8 күн бұрын
Thanks for covering this topic! Great to know how to use mcp outside of Claude desktop so that it can be deployed
@mikegchambers
@mikegchambers 8 күн бұрын
Glad you found it useful. I can see me making a bunch more on this.
@demohub
@demohub 9 күн бұрын
Great demo. Thanks for sharing
@mikegchambers
@mikegchambers 9 күн бұрын
Thanks for watching!
@chatchaikomrangded960
@chatchaikomrangded960 9 күн бұрын
Awesome Mike!
@mikegchambers
@mikegchambers 9 күн бұрын
Thanks!!
@fieldcommandermarshall
@fieldcommandermarshall 8 күн бұрын
awesome, super helpful
@mikegchambers
@mikegchambers 8 күн бұрын
Awesome. Thanks for comment.
@alanblockley3138
@alanblockley3138 9 күн бұрын
Gotta love a sci fi movie reference!
@mikegchambers
@mikegchambers 9 күн бұрын
I refuse to believe that Anthropic didn’t realise this connection!!
@KevinKreger
@KevinKreger 8 күн бұрын
Great work! I think the failure to append to the resource may be because whatever method (db call?) that Claude Desktop is using to append isn't launched or isn't available from your standalone environment. Claude desktop has a "Local Storage" folder (which I have not used). In this folder there is leveldb folder.
@mikegchambers
@mikegchambers 8 күн бұрын
Yeah. Sounds about right. I need to dig in to the code more. From my memory it’s just updating an in memory string ‘memo’. I’m not exactly sure what the point of it is, there is no tool to query it, just write. :/
@mikegchambers
@mikegchambers 8 күн бұрын
Okay. Had a long chat with the developer at Anthropic who wrote the SQLite server. There is an asynchronous call from the server that is looking for my response out of band of the agentic workflow. I’m going to work on this and get a fix. I’m also going to work on the other parts of MCP like prompts and sampling. It was s super useful and great chat.
@KevinKreger
@KevinKreger 6 күн бұрын
@@mikegchambers ❤️
@玉情林
@玉情林 7 күн бұрын
good video
@jiukoumu
@jiukoumu 9 күн бұрын
The beard is very nice. I will grow a beard of the same style in the future.
@mikegchambers
@mikegchambers 9 күн бұрын
Well… okay. Glad you enjoyed the beard. 🧔 😆
@amritanshsharma9890
@amritanshsharma9890 3 күн бұрын
Can you please make a video to deploy and train a sagemaker based keras tensorflow model but on like numerical data not image data say for example classifying weather a person has diabetes or not based on some given feature. I have searched whole youtube but couldnt find a single video on it. All tensorflow videos are only for image data none for numerical data. And great work by the way. I just love your content.
@mikegchambers
@mikegchambers 2 күн бұрын
Hey. Have you seen this video? kzbin.info/www/bejne/eZCkpZp5oplmhM0si=R8HTCMR0Ibqq2ck0
@amritanshsharma9890
@amritanshsharma9890 2 күн бұрын
@mikegchambers yes actually I have. And I got a different perspective of performing sklearn based deployment from this video. Problem is I am trying to work on tensorflow deployment model but on numerical data and somehow I have tried everything but during training job my model is running but its not getting saved and i am getting a warning. I am new to ml.I have tried like everything to the best of my knowledge. Even refereed documentation. And tensorflow based model deployment but on numerical data is something I am after.
@khanhhuyennguyen3975
@khanhhuyennguyen3975 9 сағат бұрын
I have a question that I hope you can help answer: Is it possible to apply MCP to the OpenAI API? If so, how can we do it?
@briford55
@briford55 9 күн бұрын
At the risk of dating myself... Tron!
@mikegchambers
@mikegchambers 9 күн бұрын
Yay! We have a winner! Thanks. I was beginning to think it was too obscure. You win… my respect!
@王芸若-c8t
@王芸若-c8t 8 күн бұрын
Thanks for sharing! I'm wondering how to fix this problem: Error occurred: An error occurred (AccessDeniedException) when calling the Converse operation: You don't have access to the model with the specified model ID.
@mikegchambers
@mikegchambers 8 күн бұрын
Hey. Thanks for trying out the code. You will need… an AWS account with credentials in your dev environment. You will also need to have enabled access to the LLMs models, through the Bedrock console page, clicking model access near the bottom of the menu on the left. If you have any issues, reach out and I’ll help you get it sorted.
@王芸若-c8t
@王芸若-c8t 8 күн бұрын
@@mikegchambers I think I fixed the problem, thanks a lot!
@ssteo
@ssteo 8 күн бұрын
Would you make a version for SSE where the MCP server and client can be on different machines? All examples I've found and in the github repo from MCP project only the stdio version works, SSE implementation in the SDK seems quite unstable and not well documented.
@mikegchambers
@mikegchambers 8 күн бұрын
Hey. So that library is not out yet. I was talking to the team at Anthropic today and it seem they want to get a good authentication design working before they do that. However, there is a workaround, which is to make a local stdio server and have it make a connection across the web. But that is a hack of a workaround only. Let’s keep an eye out for updates.
@CharSiuX
@CharSiuX 8 күн бұрын
Is this possible to use Ollama instead of Amazon Bedrock?
@mikegchambers
@mikegchambers 8 күн бұрын
In theory yes. But you’ll need to modify the code quite a bit. Also you need a model that can handle agentic workflows. This might be a little challenging for a quantised smaller model running on most “home” hardware. Please let me know if you make progress.
@NLPprompter
@NLPprompter 9 күн бұрын
is this fast? what should i consider to use this instead other tools?
@mikegchambers
@mikegchambers 8 күн бұрын
Hey! Well… it’s a protocol right? So it’s as fast or slow as the implementation. I was please to see that my super basic code implementation is pretty fast for basic DB operations.
@NLPprompter
@NLPprompter 8 күн бұрын
@mikegchambers i see got it, thanks man, noted.
@日本人-i4e
@日本人-i4e 8 күн бұрын
牛逼
@patruff
@patruff 9 күн бұрын
Why bedrock? Just use your own local LLMs and pay NOTHING
@mikegchambers
@mikegchambers 9 күн бұрын
Absolutely, go for it! I think I for deploying larger solutions in production we can often benefit from an API hosted model, but yeah, if you have the hardware that would be fun.
@dennislee8389
@dennislee8389 7 күн бұрын
Is it possible to use llama?
@mikegchambers
@mikegchambers 7 күн бұрын
Well, in the video I show it working with Llama 3.2, so yes, no problems.
@dennislee8389
@dennislee8389 6 күн бұрын
@@mikegchambers thanks😃
Anthropic's New Agent Protocol!
15:35
Sam Witteveen
Рет қаралды 39 М.
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 25 МЛН
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 36 МЛН
Lazy days…
00:24
Anwar Jibawi
Рет қаралды 9 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 53 МЛН
Anthropic MCP with Ollama, No Claude? Watch This!
29:55
Chris Hay
Рет қаралды 11 М.
Amazon New AI Models  'NOVA' Stun The Entire Industry!
11:31
TheAIGRID
Рет қаралды 113 М.
Qwen Just Casually Started the Local AI Revolution
16:05
Cole Medin
Рет қаралды 108 М.
YouTube is now on EASY Mode (Anyone Can Blow Up in 2025)
12:08
Jason Lee
Рет қаралды 225 М.
YOUR CODE! AT SCALE! Amazon SageMaker Script Mode
30:13
mikegchambers
Рет қаралды 10 М.
AI is not Designed for You
8:29
No Boilerplate
Рет қаралды 146 М.
NEW - Amazon Bedrock's INLINE agent API
13:15
mikegchambers
Рет қаралды 794
Why Agent Frameworks Will Fail (and what to use instead)
19:21
Dave Ebbelaar
Рет қаралды 97 М.
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 25 МЛН