Build Anything with Claude Agents, Here’s How

  Рет қаралды 271,924

David Ondrej

David Ondrej

Күн бұрын

DEVELOPERS, I'M HIRING! Apply here: forms.gle/Y8yN...
Work 30% faster with Vectal: www.vectal.ai
Wanna start a business with AI Agents? Go here: www.skool.com/...
Follow me on Instagram - / davidondrej1
Follow me on Twitter - x.com/DavidOnd...
Subscribe if you're serious about AI.
open ~/Library/Application\ Support/Claude
touch ~/Library/Application\ Support/Claude/claude_desktop_config.json
Claude Desktop: claude.ai/down...
GitHub MCP - github.com/mod...
Brave MCP: github.com/mod...
In this video I will show you how to build powerful AI agents using Claude MCP.

Пікірлер: 485
@DavidOndrej
@DavidOndrej 2 ай бұрын
💻 DEVELOPERS, I'M HIRING! Apply here: forms.gle/Y8yNSpCapcDPuTXt6 💼 Wanna start a business with AI Agents? Go here: www.skool.com/new-society 🚀 Get early access to David's startup: forms.gle/SpuEYSeh48wavJQYA
@MarcBradleyTHEoriginal
@MarcBradleyTHEoriginal 2 ай бұрын
Black Friday discount for new society?
@anshumanngupta5030
@anshumanngupta5030 2 ай бұрын
@DavidOndrej n8n x Claude MCP when? That is the real bigger picture. How to get this done?
@jacekwojcieszynski8368
@jacekwojcieszynski8368 2 ай бұрын
only if it works for windows
@CoreyLansdell
@CoreyLansdell 2 ай бұрын
I am not a programmer. I love the notion of what these tools could do. I'm curious. Could I build something that would go through my files on my computer and in my email and gather all my receipts from the year into a folder, then create a spreadsheet tracking all the expenses across areas like travel, hardware, meetings etc. to shortcut my tracking of data for submitting to my accountant for my small business' taxes? I"m just curious if this is the kind of thing that this can empower me to do? Even not being a programmer?
@QuantBrains
@QuantBrains 2 ай бұрын
Brave Browser? Why?
@pioggiadifuoco7522
@pioggiadifuoco7522 2 ай бұрын
I just started implementing and using it yesterday, guys, and now we can really say, "Imagination is the only limit here!"🤩
@thebrooksuk
@thebrooksuk 2 ай бұрын
was this on windows?
@pioggiadifuoco7522
@pioggiadifuoco7522 2 ай бұрын
​@@thebrooksuk Yup, it was a bit tricky at first, but I managed to get it working.
@whatintheworldomg
@whatintheworldomg 2 ай бұрын
please be clear on how you got it to work on windows
@dinorossi6611
@dinorossi6611 Ай бұрын
Teach me please :)
@DrDonBoo815
@DrDonBoo815 2 ай бұрын
I had to come back and leave a third comment. I was at work watching this earlier and came straight home and followed this video to a tee and it worked brilliantly. You're one of my favorite KZbinrs and I thank you for sharing your knowledge!
@DonJuravin
@DonJuravin 2 ай бұрын
Thanks!
@bestvexer
@bestvexer 2 ай бұрын
For Windows users here is the path: C:\Users\username\AppData\Roaming\Claude Just replace username with your user name. And btw it only works on the paid version of Claude, 3.5 Sonnet (maybe in the future they will change that).
@reddddzzz
@reddddzzz 2 ай бұрын
I have paid version and it says could not connect to MCP server brave-search
@aideepstudy
@aideepstudy 2 ай бұрын
@@reddddzzzTry solving this with ChatGPT or even Claude, take a screenshot and ask it to guide you through the steps for solving the issue.
@Andrew_Donelson
@Andrew_Donelson 2 ай бұрын
I have done this. config file is in correct location and being loaded but the MCP Tools icon does not show up. I was getting errors until I got keys and such in. I even removed everything in config except file filesystem and restarted. Even waiting overnight, then restarted. My claude desktop (on windows) will not make MCP tools available. Any ideas?
@pascalverret1104
@pascalverret1104 2 ай бұрын
@@reddddzzz Same issue here
@wolfnando89
@wolfnando89 2 ай бұрын
This is the code on windows { "mcpServers": { "brave-search": { "command": "node", "args": [ "C:\\Users\ ando\\AppData\\Roaming\ pm\ ode_modules\\@modelcontextprotocol\\server-brave-search\\dist\\index.js" ], "env": { "BRAVE_API_KEY": "NOVO_TOKEN_DE_API" } } } } Here is ok!
@jvangeene
@jvangeene 2 ай бұрын
I love your enthusiasm - you are right in stating the obvious here: a game changer. Well explained.
@knecting
@knecting 2 ай бұрын
For those having issues with this, here is how I resolved it. 1. Initial Setup: - Installed Node.js using nvm (Node Version Manager) via Homebrew - Made sure to install nvm first, then Node.js through nvm (order was important) 2. Configuration File: - Located the proper config file path: `/Users/yourname/Library/Application Support/Claude/claude_desktop_config.json` - Had to handle spaces in the path name correctly (this was tricky!) 3. Key Changes That Made It Work: - Used the full path to npx: `/Users/yourname/.nvm/versions/node/v23.3.0/bin/npx` - Added proper environment variables (PATH and NODE_PATH) - Made sure to use the correct Brave API key (we had to try between two different keys - the "Data for Search" one) - Created a clean JSON file directly in VS Code instead of using echo commands to avoid formatting issues 4. Final Working Configuration: ```json { "mcpServers": { "brave-search": { "command": "/Users/yourname.nvm/versions/node/v23.3.0/bin/npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "YOUR_API_KEY", "PATH": "/Users/yourname/.nvm/versions/node/v23.3.0/bin:/usr/local/bin:/usr/bin:/bin", "NODE_PATH": "/Users/yourname/.nvm/versions/node/v23.3.0/lib/node_modules" } } } } ``` 5. Important Steps After Changes: - Always fully quit Claude Desktop (Command+Q) - Restart the application - Verify the MCP server is running with "Brave Search MCP Server running on stdio" The key lesson was to be methodical and verify each component (Node.js installation, config file location, API key, and proper paths) step by step until we got it working (me and Claude).
@RudyDeLaGarza
@RudyDeLaGarza Ай бұрын
Thanks @knecting Really helpful and I still had to have Claude help me with troubleshooting, but it eventually worked!
@AndyHoebeke
@AndyHoebeke Ай бұрын
Awesome. Have the same nvm node setup. What fixed it was using the full path for npx in the .json and also adding the NODE_PATH in there. That was enough thanks!!
@okiesumos
@okiesumos Ай бұрын
Yeah, the PATH in env was the key for me.
@JimmysNotes
@JimmysNotes Ай бұрын
installing node.js this way was the fix! tysm
@timschnurr
@timschnurr Ай бұрын
this nodepath addition worked for me as well with a long claude troubleshoot..
@CharlesNJohn
@CharlesNJohn 2 ай бұрын
Incase anyone wants to just replicate! Please do the following: - make a simple html page - create a repository called "new-society-test" - Push the html page to the "new-society-test" repo - Add a little css to the html page and then push it up - Make an issue suggesting we add some more content on the html page - Now make a branch called feature and make that fix and push the change - Make a pull request against main with these changes
@OriginalJericho
@OriginalJericho 2 ай бұрын
Phenomenal value in this video. Thanks for sharing your time, knowledge and insights. I'm with you on seeing what's possible! It's a great time to be alive!
@theh1ve
@theh1ve 2 ай бұрын
I went from top 5% to top 2% to top 0.5% just watching this lol.
@kommakarl
@kommakarl 2 ай бұрын
nah bro
@jimbo2112
@jimbo2112 28 күн бұрын
This is 🤯🤯🤯 I've not properly coded for maybe 20 years, and then I was rubbish at it. This is incredible and Claude is by far the best coding LLM I've used. Simply amazing. Thanks!
@__chs__
@__chs__ Ай бұрын
Love the video! One thing you might want to mention - you need to have docker installed for the agents to work. I'm sure most people do, but just in case...
@K_dyub
@K_dyub 16 күн бұрын
Not having any luck with the Brave MCP. I've rewatched and made sure I followed step by step. I also installed Docker and made sure the engine was running. But I still don't see the MCP option. any thoughts?
@david.walters
@david.walters 2 ай бұрын
Awesome! Here is the prompt for everybody to c&p: Please do the following: Make a simple HTML page. Create a repository called "new-society-test." Push the HTML page to the "new-society-test" repo. Add a little CSS to the HTML page and then push it up. Make an issue suggesting we add some more content on the HTML page. Now make a branch called "feature" and make that fix, then push the change. Make a pull request against "main" with these changes.
@MJFUYT
@MJFUYT 2 ай бұрын
Thank you 💪
@LudwigSolutionsAI22
@LudwigSolutionsAI22 2 ай бұрын
Thanks ❤
@RickyAqt
@RickyAqt 19 күн бұрын
I am a tech recruiter, I needed to rewatch like 3 times to try to understand. Ill get there but David, thanks for sharing. I just subscribed.
@vassilyn5378
@vassilyn5378 29 күн бұрын
if you're on macos and it doesn't work right away, ask claude to troubleshoot it :) in my case it turned out that it needed the full path to npx (which in its turn required node.js installed which in its turned required xcode and so on). after a couple of hours of installs and some version compatibility issues with the older macos, it works!
@ThomasHassettOfficial
@ThomasHassettOfficial 2 ай бұрын
Super keen for your app , keep smashing it brother 🎉
@m.c.4458
@m.c.4458 2 ай бұрын
lol
@monkeytees9478
@monkeytees9478 2 ай бұрын
Just an FYI on Windows (Possibly Mac as well) if you download and open the Claude application the 'claude_desktop_config.json' file automatically gets created. So you'd just need to locate it and open it. Edit: Also in the top left is File < Settings < Developer < Configure which locates & opens .json file
@zackghazraoui372
@zackghazraoui372 2 ай бұрын
Am I the only one that sees the MCP here but not getting the icons , and the functionalities even though Claude recognises the add on ?
@thepsion5
@thepsion5 Ай бұрын
@@zackghazraoui372 I'm currently experiencing the same problem, were you able to solve it?
@naveenmorla4703
@naveenmorla4703 Ай бұрын
@@thepsion5 Quit the app from the taskbar and open it will work.
@naveenmorla4703
@naveenmorla4703 Ай бұрын
@@zackghazraoui372 Quit the app from the taskbar and open it will work.
@비차-n9u
@비차-n9u Ай бұрын
I'm a Windows user. When I press edit config, the folder opens and I can't proceed anymore. When I double-click on the JSON file I prepared in advance, it just runs, how do I fix this..
@MarkAnthonyBartholomewI
@MarkAnthonyBartholomewI 2 ай бұрын
Have to build these first before MCP will work. uv 0.4.18 or higher (uv --version to check) Git (git --version to check) SQLite (sqlite3 --version to check) And that has pretty much taken me all afternoon on windows. 😮‍💨
@whatintheworldomg
@whatintheworldomg 2 ай бұрын
please be clear on how you got it to work on windows
@pampermenetwork
@pampermenetwork 24 күн бұрын
Haha. David is so excited that he can barely contain himself. I love it.
@augustoa
@augustoa Ай бұрын
Great great video! Had some problems setting up the environment but after that it is working like a charm
@CUSTOMDATA.I
@CUSTOMDATA.I 2 ай бұрын
YO THANKL YOU SO MUCH FOR MAKING THIS VIDEO i WAS ONE OF THOSE THAT DIDNT KNOW HOW TO GET THIS SETUP BUT LOVED WHAT ANTHROPIC DID WITH THIS
@it5mark
@it5mark 2 ай бұрын
Message from the frontier.! Thanks David.
@DraskoSaric
@DraskoSaric 27 күн бұрын
For MacOS, if you have error: "Failed to start MCP server: Could not start MCP server brave-search: Error: spawn docker ENOENT", check if docker is running. If you don't have docker running, install Docker desktop, start docker and restart Claude.
@stevenjwagner
@stevenjwagner 11 күн бұрын
I get this with NPX as well.
@armiman123
@armiman123 5 күн бұрын
@@stevenjwagner Did you manage to fix it?
@markkorjagin6927
@markkorjagin6927 2 ай бұрын
For anyone not finding the config directory also check '/Users//Library/Application Support/castgpt' with 'castgpt' being the actual package name.
@touchgrasscrypto
@touchgrasscrypto Ай бұрын
This was really easy to follow along. the links in the description that were part of the instructions didn't work, but I typed them in manually and it worked
@steffenp1113
@steffenp1113 Ай бұрын
This is exceptionally good stuff buddy. Keep up the good work!
@danielrodriguezgonzalez2982
@danielrodriguezgonzalez2982 Ай бұрын
Had to install nvm and node.js and then it worked. thanks!
@MiLES2iNFINiTYBIZ
@MiLES2iNFINiTYBIZ 2 ай бұрын
Got everything working in just a few hours and stumbling over the MCP intergration haha thank you man just subscribed!!!
@nikolaybonapartov7379
@nikolaybonapartov7379 2 ай бұрын
Are you on Mac or Windows?
@MiLES2iNFINiTYBIZ
@MiLES2iNFINiTYBIZ 2 ай бұрын
@ Mac
@PosterityOf1776
@PosterityOf1776 Ай бұрын
@@nikolaybonapartov7379 windows. i stumbled and got mine to work
@vladstefanilie
@vladstefanilie 28 күн бұрын
thank you ! for this little tutorial - it helped me setup Claude locally - though I think the github permissions seem to create issues for me. but for that I need to take care myself.
@nugehs
@nugehs Ай бұрын
Awesome! Just followed till the end and blown away :D
@ARGWorldwide
@ARGWorldwide 23 күн бұрын
Yo bro. You interested in potential using this to develop a dapp on a blockchain? I’m non technical but I have ideas and there’s a blockchain that is offering grants for building applications
@behavelondon
@behavelondon 2 ай бұрын
I've spent a fortune on Bolt this month and this is mwhahahahaahha AMAZING.Well done!
@linguistbreaker
@linguistbreaker 7 күн бұрын
1:44 "If you don't have a Claude account; What are you doing?"🤣
@georgerobbins5560
@georgerobbins5560 2 ай бұрын
Great Video, David. Keep up the amazing work.
@AlexAlex-ei7zf
@AlexAlex-ei7zf 2 ай бұрын
Шалом, бро! Как всегда очень полезное и классное видео! Спасибо! Спасибо, по сути, за самый лучший контент по автоматизации работы с нейросетями.
@musmac
@musmac Ай бұрын
I watched the whole video, but I am so far away from being a programmer LOL!!! I come from the creative and entrepreneurial side and I can see so much potential already on this. It doesn't seem difficult to set up BUT my concern is not knowing what I don't know. For example you mentioned that you don't want to give control to Claude to access to your computer, obviously not! But I am sure there are other potential dangers that can mess up many other things. Maybe if I followed the steps, I'd know how to build a car, but if I don't know how to drive to many things will go wrong LOL
@neurojitsu
@neurojitsu Ай бұрын
Your enthusiasm is infectious, love it!
@Buderscotch
@Buderscotch Ай бұрын
hahahaha bro i love this video so much. about to build something i think is cool because of your content. great great stuff, keep it up.
@FidelGuajardo
@FidelGuajardo Ай бұрын
Your summary and content is amazing
@ThisGuyShips
@ThisGuyShips 20 күн бұрын
This Claude update is an absolute game-changer for anyone looking to 10x their productivity. Here's why you need to pay attention: 2:00 Single prompt = Full stack developer capabilities. Claude can now build entire websites, manage GitHub repos, and handle multiple dev tasks autonomously 🤯 14:54 Real talk: You can compress 8 hours of basic dev work into 2-3 hours by letting AI agents handle the repetitive tasks. Perfect for founders trying to move fast 16:45 Major insight: There will be two types of people - those who leverage AI agents and those who get left behind. The gap will be massive Honestly, this is probably the biggest opportunity since crypto in 2020 for builders who want to get ahead. The 30-min setup is worth it. Who else is building with AI agents? Drop your use cases below 👇
@xinyueou30
@xinyueou30 Ай бұрын
I think this is gonna be bigger than all the GPTs hype. Claude MCP is killing it
@mysound777
@mysound777 2 ай бұрын
This is so insanely valuable. Thank you so much!!
@smanqele
@smanqele Ай бұрын
Can this actually leverage your github account? Not sure if I missed that on the video. Great post!
@joslte
@joslte 28 күн бұрын
Great tutorial! Thanks for this one!
@JSambrook
@JSambrook 2 ай бұрын
Hi David - Thanks for this video. I signed up for the wait list. Looking into joining the new-society. Pretty excited about the MCP capability. Does it replace what Anthropic called "computer use" released a month or so ago? Looks like the use of Docker containers is not emphasized now. I'm going to need an AI to read about AI for me, if I'm going to keep up. Anyway, great and helpful content, Thanks!
@phineasndhlau7618
@phineasndhlau7618 16 күн бұрын
Brilliant. Will this work on a limited free plan?
@jonathanditren7671
@jonathanditren7671 Ай бұрын
thank you man, this looks awesome, i'll try it
@knowledgebeyondstars5650
@knowledgebeyondstars5650 Ай бұрын
Hi David. I’m not familiar with Ai and coding yet. I want time ask you which Ai 🤖 can do all this that you showed for me *?* if there isn’t maybe you should make one *!*
@EvandroInada
@EvandroInada 2 ай бұрын
Great video David! Very inspiring! Tks for sharing!
@aa3352-m9w
@aa3352-m9w Ай бұрын
Thanks for explaining how claude mcp works and how to install agents, but to build full apps with this I would say it is still early
@TheCajunAsian
@TheCajunAsian Ай бұрын
It's not even code, it's just Json... Dude you just killed me with that one 😝😝😝
@JanosKeresnyei
@JanosKeresnyei Ай бұрын
Hey, Bro, it looks amazing, and this is the knowledge I am looking for, but I am not a programmer, I can't write codes, but brave enough to use snippets as you explain. However, it is really hard to follow since you speak extremely fast, and the movements of the programming are hard to follow for an amateur like me. I am sure it is great for professionals. Congrats.
@chessone3469
@chessone3469 Ай бұрын
Could you make a video on AI usage for data analysis , data science? For example API usage , IDE setups, etc? Thanks
@BodhuDev
@BodhuDev 2 ай бұрын
For Windows the path is "C:\Users\admin\AppData\Roaming\Claude". You can also edit config in the Clause App itself. Although I appreciate your videos, please stop pushing your vectal app, it makes your videos unnecessarily confusing.
@theresakennedy7339
@theresakennedy7339 2 ай бұрын
Yea I got lost trying to figure out what that was…
@theresakennedy7339
@theresakennedy7339 2 ай бұрын
How do you edit config in the Claude app
@theresakennedy7339
@theresakennedy7339 2 ай бұрын
Ok, I found edit config in the Claud app and it took me to the roaming folder. Now what?
@craig6095
@craig6095 2 ай бұрын
Agreed. So many steps missed and neglected because of his focus on unnecessary tools.
@비차-n9u
@비차-n9u Ай бұрын
I'm a Windows user. When I press edit config, the folder opens and I can't proceed anymore. When I double-click on the JSON file I prepared in advance, it just runs, how do I fix this..
@shawnmckee9723
@shawnmckee9723 2 ай бұрын
f'in love this guy's attitude. It's infectious.
@TheMrAi_com
@TheMrAi_com 25 күн бұрын
Thank you for sharing! See you in new society soon!
@kilocesar
@kilocesar 18 күн бұрын
Great video man!
@leoswalters
@leoswalters Ай бұрын
Thank you! Appreciate the info and insight!
@Terran_tino
@Terran_tino Ай бұрын
Lovin all your videos ser, I've built a simulation and looking at putting a job on upwork, curious if you do paid freelance work still yourself?
@KamaleshPramanik-s3c
@KamaleshPramanik-s3c Ай бұрын
Awesome video .. Thank you very much David Ondrej.
@anasajaanan7087
@anasajaanan7087 Ай бұрын
that's really awesome. Loved it and Enjoyed it !!!
@JasonEala
@JasonEala Ай бұрын
earned a sub. i gotta get on this asap!
@Sam_Bent
@Sam_Bent 2 ай бұрын
Windows users: windows button on keyboard -> type 'cmd' hit enter. cd %AppData%\Claude echo. > claude_desktop_config.json
@LiveLoveMazy
@LiveLoveMazy Ай бұрын
how can i find the json file? please!!
@rvs99
@rvs99 15 күн бұрын
Does it read and understand the exisitng github repo, architecture we used, design pattern we used? and then can we provide the prompt to do bug fixing?
@debunkitnow
@debunkitnow 2 ай бұрын
This is freakin game changing 👏 🤩 Thank you
@LeftiLocos
@LeftiLocos Ай бұрын
Crazy! Great Video, can it do also word press websites?
@areebali22
@areebali22 13 күн бұрын
For MacOS, if you have error: "Failed to start MCP server: Could not start MCP server brave-search: Error: spawn docker ENOENT", check if docker is running. If you don't have docker running, install Docker desktop, start docker and restart Claude.
@santoshjoshi2003
@santoshjoshi2003 2 ай бұрын
Awesome thanks, learnt something good today
@jameszerafa5373
@jameszerafa5373 2 ай бұрын
Can you please make a video on how to take that starting point and use claude to turn your site into a business idea you have?
@saagrawa
@saagrawa Ай бұрын
Hi David - can agents be implemented if all the back end systems aren't "open"? For example I am imagining government or healthcare organizations with monolithic "closed" systems that have special read / write APIs if any. Perhaps a naive question but does implementing an agentic layer that orchestrates the actions across systems require a "TIBCO like messaging bus" to exist that makes the back end systems more open?
@K_dyub
@K_dyub 16 күн бұрын
Not having any luck with the Brave MCP. I've rewatched and made sure I followed step by step. I also installed Docker and made sure the engine was running. But I still don't see the MCP option. any thoughts?
@harveywang8020
@harveywang8020 2 ай бұрын
so far so good , the only pity is that config could not use our own anthropic API key so it is limited Claude account's usage.
@rennaydorasamy
@rennaydorasamy 2 ай бұрын
Brilliant video David! Excellent, no frills, guide. Thanks!
@alessandrofrau4196
@alessandrofrau4196 2 ай бұрын
Use Agents for non-linear tasks, and normal operations for linear, predictable tasks that don't require decision-making.
@ailunqin3722
@ailunqin3722 2 ай бұрын
Thank you David for sharing the knowledge, can you compare the MPC claude with Replit?
@kushbhuwalka3706
@kushbhuwalka3706 Ай бұрын
absolutely crazy. Amazing explanation
@Kelz_codes
@Kelz_codes Ай бұрын
With a technical background you can get leverage AI agents to a whole new level. So if anyone want to get into Software engineering in 2025, go for it. I don't want to give to much away so will try summarise. Problem Created an app for a car dealership to run promotions, then the executives have to ring people who have access the promotional pages and try get them buy a car. Solution A.I. agents to cut out of the work of the executives, which worked fine. But then I was getting bottled necked as a lot of dealerships wanted the application. So created a dev agent that spin up the whole infrastructure for a new dealership i get. This contains executive agents to make calls and a designer agent who dish out new promotional landing pages back to the dev agent. Story short I ended up automating their workflow and mine. FYI: I am software engineer with 10 years of experience.
@fighterjockey246
@fighterjockey246 2 ай бұрын
I think its more euphoria than substance. In larger scheme of things there is really no big deal if an AI now also has the ability to make pull requests…
@thomashusmann8185
@thomashusmann8185 2 ай бұрын
The AI can now access your data, for example, tell me which students are struggling, or which customers spend the most, etc
@Lugano_Citizen
@Lugano_Citizen Ай бұрын
@@thomashusmann8185a task even the Excel people can find out in five seconds with big query. Why would they ask an AI when typing out the question is slower?
@mickywes3733
@mickywes3733 Ай бұрын
Either I missed it or he forgot to tell us that we need to be running DOCKER for this to work 😉
@pahadia
@pahadia 2 ай бұрын
Is MCP only available with the paid version? I'm using the free tier of Claude (Haiku) and have completed the setup, but I don't see the MCP tools in the prompt bar. I've closed and reopened the Claude desktop several times without success.
@soroushsalari2310
@soroushsalari2310 2 ай бұрын
Now it's available for free version as well you just need the desktop app
@prajwalvasishta4515
@prajwalvasishta4515 25 күн бұрын
Same here, its not showing in claude desktop app
@DrDonBoo815
@DrDonBoo815 2 ай бұрын
👏🏾👏🏾👏🏾👏🏾 Excellent video!
@ottofrank3445
@ottofrank3445 2 ай бұрын
when you said more power to them (who does not use internet yet) i laughed big times!
@CaliJumper
@CaliJumper 9 күн бұрын
If on Linux within Cline inside VScode can you still operate the MCP servers without the desktop interface?
@BABEENGINEER
@BABEENGINEER Ай бұрын
Very cool
@ai.aspirations
@ai.aspirations Ай бұрын
Thanks for sharing ❤
@sivanosh
@sivanosh 2 ай бұрын
Hey, I wish it didn't seem so complicated to me.. I'd love to hear how in your opinion such an agent can help lawyers like me. Thanks, it was interesting and it's a shame I didn't understand so much.
@aij06
@aij06 2 ай бұрын
Watching this felt exhausting for some reason. Im definitely excited to use this though.
@StefanJungmichel
@StefanJungmichel Ай бұрын
Thanks, great video!
@DaveNougalMusic
@DaveNougalMusic Ай бұрын
This is absolutely amazng, mate. Mind is blown. You're right it does take some effort and trial and error but I can confirm I got it to work. Fantastic stuff mate.
@kirthiramaniyer4866
@kirthiramaniyer4866 2 ай бұрын
I got the API Key from Brave Search, and updated the config file. I still cannot see the Icon that shows MCP Tools available yet.
@abraham3006
@abraham3006 Ай бұрын
I'm in the same problem...
@ManikantaKondeti
@ManikantaKondeti Ай бұрын
Just quit and reopen
@TheRevitQueen
@TheRevitQueen Ай бұрын
me too. i did everything right and keep on getting messages that MCP is disconected and no icons for MCP. did you resolve it?
@PascalDeMul-Setmixer
@PascalDeMul-Setmixer Ай бұрын
I had to install Node.js, perhaps try that?
@akshayhans1310
@akshayhans1310 2 ай бұрын
Hi, Please help. After editing json file and updating Brave API Key, it gives the error: "Could not connect to MCP server brave-search".
@ALWALEEDALWABEL
@ALWALEEDALWABEL Ай бұрын
I wonder about the ability of AI to handle complex projects. Will it be able to do so, or will it fail? If possible, I would like you to create a video about a massive project and ask it to perform an extremely complex task. Will it fail or succeed?
@frankdearr2772
@frankdearr2772 2 ай бұрын
Great topic thanks 👍
@varunpoojari2585
@varunpoojari2585 4 күн бұрын
GR8 video LOVED IT!!!! THANKS
@marcq1588
@marcq1588 10 күн бұрын
Claude 3.5 Sonnet, even on the paid plan, set limitations. I signed up and now have to wait several hours because my one message reached the limit for Claude 3.5 Sonnet! I don't understand why even on a paid account there are any such limitation. This is authorized robbery! Do you have the same limitation with your system on the Claude Desktop?
@curtisholder4
@curtisholder4 Ай бұрын
Great video David. I followed your steps and it worked. I was trying to load the gdrive to my claude through cursor but was unsuccessful. Any help?
@Garret_kane
@Garret_kane Ай бұрын
Excited about whats possible here - i followed your steps to the letter - but i got a lot of error messages popping up. Maybe they changed something? Any tips? Best,
@NateFikru
@NateFikru 2 ай бұрын
Question: do you have to babysit the agent or can you have an agent running for like 2 hours continuously prompting itself to continue the project?
@MikePreston-darkflib
@MikePreston-darkflib 2 ай бұрын
Currently the app requires confirmation to allow it to perform an action. I haven't seen any way of 'fixing' that. Considering building my own app that can do similar with other backends too... Since it would be great to be able to click a file and it autoconfig for that MCP server.
@vladimirmishkov9555
@vladimirmishkov9555 2 ай бұрын
@@MikePreston-darkflib just write ahk, make screenshot of the confirmation buttons and make it confirm with the ahk image search and click :p ahk is 30 seconds download, not even an ide required (can be simple .txt file that you convert to .ahk file when u wanna run it).
@agentofenhanced2428
@agentofenhanced2428 2 ай бұрын
I built a python script to get around the confirmation requirement
@vladimirmishkov9555
@vladimirmishkov9555 2 ай бұрын
@agentofenhanced2428 also definitely a way!
2 ай бұрын
@@agentofenhanced2428 Imagine that Tom Hardy meme template here: You Like Living Dangerously
@bug5654
@bug5654 19 күн бұрын
Tron fans: Nah, we know damn well MCP = Master Control Program.
@piusgabula
@piusgabula Ай бұрын
Could you do some security related stuff using these agents.
@josejaner
@josejaner 2 ай бұрын
Will it be possible with Swarm to have a hybrid of models, for example: using the triage or first-level agent ''gpt-4o or mini" and the agents that manage tools (last level) that use ollama with models like 'qwen2.5-coder' that works very well and fast? 🤔 I don't know if this can be possible, my intention is to reduce costs and increase perimeter data security.
Build anything with o1 agents - Here’s how
39:26
David Ondrej
Рет қаралды 172 М.
Anthropic Revealed Secrets to Building Powerful Agents
19:06
Matthew Berman
Рет қаралды 142 М.
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
My 17 Minute AI Workflow To Stand Out At Work
17:30
Vicky Zhao [BEEAMP]
Рет қаралды 289 М.
Claude has taken control of my computer...
4:37
Fireship
Рет қаралды 1,1 МЛН
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 301 М.
I’m Starting an Ai Agency From $0 To Prove It’s Not Luck…
28:05
Charlie Barber
Рет қаралды 142 М.
Build anything with bolt.new, here’s how
21:15
David Ondrej
Рет қаралды 183 М.
Build your own ChatGPT Operator - here’s how
16:26
David Ondrej
Рет қаралды 52 М.
Turn ANY Website into LLM Knowledge in SECONDS
18:44
Cole Medin
Рет қаралды 187 М.
Learn DeepSeek-R1 in 30 Minutes: Watch BEFORE It's TOO LATE!
32:28
Ishan Sharma
Рет қаралды 173 М.
Build Anything with AI Agents, Here's How
29:49
David Ondrej
Рет қаралды 341 М.
Build Everything with AI Agents: Here's How
39:58
David Ondrej
Рет қаралды 630 М.
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН