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?
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).
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.
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?
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!
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
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.
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 RUclipsrs and I thank you for sharing your knowledge!
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
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!
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. 😮💨
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.
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.
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.
im on the desktop claude and i get a message bubble that reads in red text "could not connect to MCP server github" and "Could not connect to MCP server brave-search"... is this the part where i wait a bit for claude to find the mcp server so that i dont "drop like a fly" ?
If you are up to date with the latest developments in AI, you know that a number of large companies have already announced the creation of AI agents. And all the existing and upcoming frameworks that developers use are just an intermediate stage. Very soon they will provide their developments, available to the end user right out of the box. There is no place for developers in this sector, everything will be available to anyone without any effort. And this can only please short-sighted people. These systems and robotics will take hundreds of millions of jobs in the next 5 years. Think about it, if everything you can imagine can be done with one high-quality prompt, what will be your value as an employee? Can an AI write such a prompt for you? It all comes down to setting a simple task and no qualification is needed for this.
Is the server overloaded? Account & API all set up correctly, but getting the error 'Could not connect to MCP server brave-search' ? Anyone else having this issue?
@@MarcMulvaney Yes it does ... Now that I've installed node.js properly on my machine I see the 2 MCP tools are available as icons... I'm just getting back to it now ... Fascinating stuff ... Interestingly I used Claude to track down the error after opening the 'MCP Log file' (Developer mode): Answer: "The error message ENOENT (Error NO ENTry) indicates that the system cannot find the npx command, which is part of Node.js. This typically means either: Node.js is not installed on your system, or Node.js is installed but not properly added to your system's PATH"
Can you start off with what an agent would do? For instance, can you give it specific task like open up Microsoft Word? Write an e-mail. Answer phones?
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.
@@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).
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!
for windows Windows equivalent commands: 1. Open the folder: Press Windows + R, type "%APPDATA%\Claude" and hit Enter 2. Create the file: From Command Prompt, run: mkdir "%APPDATA%\Claude" type nul > "%APPDATA%\Claude\claude_desktop_config.json" 3. Edit the file: notepad "%APPDATA%\Claude\claude_desktop_config.json"
Why am I the only one it doesn't work for without any explanation? I did everything according to the video, but in practice I log into cloud and nothing new is added to the software :(
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.
Is this something helpful for api? I built my own UI with embedding because I can’t get shit done with Claude on OS or Web because of their rate limits. DIY projects lol.
Same issue here, the amount off issues it has, while less than Chat GPT, I get maybe one thing done then out of time, then start again and it messes up stuff from the last time.
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…
Hey David. I've finished the step 5, however my Claude Desktop is showing me this message: "Could not connect to MCP server brave-search". Would you know how to fix it? Thx
I see no reason I should be getting the following error message, but I am getting it anyway, and I need help to resolve it, please: "There was an error reading or parsing claude_desktop_config.json: SyntaxError: Unexpected non-whitespace character after JSON at position 251 (line 15 column 1)". This error occurs after adding the GitHub server code. The brave-search is working just fine.
David please advise me, now i use and pay chatgpt and I'm pretty satisfied but recently i hear a lot Claude is better, should I switch subscription to Claude? Greetings from Serbia
If you can only afford one, I wouldn't, I think ChatGPT is a better all-rounder, being able to do more tasks, but I use Claude more when I have both if that makes sense.
@@matyasstoch8893 thank you, you're right that chatgpt is a good all-rounder and i really got used to several custom gpts, but i will research more about Claude's features and limits, idk if it's the same case as cgpt, even if you have active subscription, there are some limits for certain models..
With Windsurf, I have built a CrewAI multi agent system with agents interacting with each other and calling GPT4 (currently) and orchestrating those interactions and so far I have spent about 8 hours working on it. It is able to create mock test data and run a complete test in a virtual environment and I have a front end ready to start hooking into it. Cascade is running on its own proprietary model and imo it is very intuitive in how it assists you. I have found that I must run test after test and give it the results along with my own context to help it understand. I have also found that I need to have it generate a summary of what is going wrong and then I hand it over to Claude externally and then turn Claude's response back around to resolve. That is where this gets SUPER powerful is when you start having multiple instances of Claude working together....I think maybe even using different LLMs and compiling their collective thoughts could be even more powerful to create diversity of output.
Can someone explain, for a none dev, what’s so groundbreaking about this, then end result is a simple webpage. Can these same setups be used for more complex tasks?
I'm a dev. What the guy in the video is using it for is completely irrelevant especially to a non-dev. Claude ai is likely much more powerful. Find a better example of its capabilities.
It's great they are pushing forward but commercially and in the real world these models have to be integrated, plugged together with other things and have UI, Backend, and Interconnected pieces. They will not build everything for you, they don't even do fast conversational due to the complexities of LLM's. The best avenue is NLU and LLM's like Claude then bring in all your other pieces even if say Claude assists you in generative AI elements or plugging things together.
Are there any approaches to get around usage limits? Can I use my anthropic API key for example? I described a simple web app and within a few mins I hit usage limits. Not sure how this is useful if thats the case.
Bro .. what about chatgpt plus? They released o1. Im a developer (student) and also use if for personal.. and i just bought it. so there is no other agent framework to make this kind of similar agents using windsurf?
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.
Any idea how to make it read local PDFs? I set up a file system server and it works for code, but can't read PDFs. You have to either upload them to the chat via the UI or use the PDF API. Would be super cool if you could use MCP to read local PDFs
I am getting a "Could Not Connect to MCP server brave-search" error when re-starting Claude. Any thoughts on what i may have done wrong or missed? I have gone through everything step by step carefully, and have inpout my API key, etc. I can't see anything that I may have missed
💼 Wanna start a business with AI Agents? Go here: www.skool.com/new-society
🚀 Get early access to David's startup: forms.gle/SpuEYSeh48wavJQYA
Black Friday discount for new society?
@DavidOndrej n8n x Claude MCP when? That is the real bigger picture. How to get this done?
only if it works for windows
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?
Brave Browser? Why?
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).
Thanks @knecting Really helpful and I still had to have Claude help me with troubleshooting, but it eventually worked!
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.
I have paid version and it says could not connect to MCP server brave-search
@@reddddzzzTry solving this with ChatGPT or even Claude, take a screenshot and ask it to guide you through the steps for solving the issue.
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?
@@reddddzzz Same issue here
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!
I just started implementing and using it yesterday, guys, and now we can really say, "Imagination is the only limit here!"🤩
was this on windows?
@@thebrooksuk Yup, it was a bit tricky at first, but I managed to get it working.
please be clear on how you got it to work on windows
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
Your enthusiasm is infectious, love it!
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.
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 RUclipsrs and I thank you for sharing your knowledge!
I went from top 5% to top 2% to top 0.5% just watching this lol.
nah bro
I love your enthusiasm - you are right in stating the obvious here: a game changer. Well explained.
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
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 ?
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!
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
Got everything working in just a few hours and stumbling over the MCP intergration haha thank you man just subscribed!!!
Are you on Mac or Windows?
@ Mac
@@nikolaybonapartov7379 windows. i stumbled and got mine to work
Brilliant video David! Excellent, no frills, guide. Thanks!
Well said Rennay!
Super keen for your app , keep smashing it brother 🎉
lol
Message from the frontier.! Thanks David.
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. 😮💨
please be clear on how you got it to work on windows
Great Video, David. Keep up the amazing work.
I've spent a fortune on Bolt this month and this is mwhahahahaahha AMAZING.Well done!
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.
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.
Yea I got lost trying to figure out what that was…
How do you edit config in the Claude app
Ok, I found edit config in the Claud app and it took me to the roaming folder. Now what?
Agreed. So many steps missed and neglected because of his focus on unnecessary tools.
This is so insanely valuable. Thank you so much!!
For anyone not finding the config directory also check '/Users//Library/Application Support/castgpt' with 'castgpt' being the actual package name.
Шалом, бро! Как всегда очень полезное и классное видео! Спасибо! Спасибо, по сути, за самый лучший контент по автоматизации работы с нейросетями.
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.
Thank you 💪
Thanks ❤
Windows users:
windows button on keyboard -> type 'cmd' hit enter.
cd %AppData%\Claude
echo. > claude_desktop_config.json
Thank you! Appreciate the info and insight!
Great video David! Very inspiring! Tks for sharing!
This is freakin game changing 👏 🤩 Thank you
Thanks!
f'in love this guy's attitude. It's infectious.
Awesome thanks, learnt something good today
It's not even code, it's just Json... Dude you just killed me with that one 😝😝😝
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.
Now it's available for free version as well you just need the desktop app
im on the desktop claude and i get a message bubble that reads in red text "could not connect to MCP server github" and "Could not connect to MCP server brave-search"... is this the part where i wait a bit for claude to find the mcp server so that i dont "drop like a fly" ?
same issue
Same for me too!
same
Seems like no one on windows has it working. Im thinking maybe anitvirus
Same!
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.
If you are up to date with the latest developments in AI, you know that a number of large companies have already announced the creation of AI agents. And all the existing and upcoming frameworks that developers use are just an intermediate stage. Very soon they will provide their developments, available to the end user right out of the box. There is no place for developers in this sector, everything will be available to anyone without any effort. And this can only please short-sighted people. These systems and robotics will take hundreds of millions of jobs in the next 5 years. Think about it, if everything you can imagine can be done with one high-quality prompt, what will be your value as an employee? Can an AI write such a prompt for you? It all comes down to setting a simple task and no qualification is needed for this.
Is the server overloaded? Account & API all set up correctly, but getting the error 'Could not connect to MCP server brave-search' ? Anyone else having this issue?
I think this is because I don't have node installed on my system?
@@arnoldaut does it work now? and if so what steps did you take to fix it? Thanks in advance.
@@MarcMulvaney Yes it does ... Now that I've installed node.js properly on my machine I see the 2 MCP tools are available as icons... I'm just getting back to it now ... Fascinating stuff ... Interestingly I used Claude to track down the error after opening the 'MCP Log file' (Developer mode): Answer: "The error message ENOENT (Error NO ENTry) indicates that the system cannot find the npx command, which is part of Node.js. This typically means either: Node.js is not installed on your system, or Node.js is installed but not properly added to your system's PATH"
@@arnoldaut I did the same and now it works, thanks for the tip!
@ haha! Brilliant… glad it was helpful … good to overcome problems… always a solution… 👍
Thanks for sharing ❤
when you said more power to them (who does not use internet yet) i laughed big times!
Hi, Please help.
After editing json file and updating Brave API Key, it gives the error: "Could not connect to MCP server brave-search".
Great topic thanks 👍
👏🏾👏🏾👏🏾👏🏾 Excellent video!
Watching this felt exhausting for some reason. Im definitely excited to use this though.
6:08 could not connect to mcp server brave search
same issue
@al7240 update node.js or if you don't have install it , it worked for me
Can you start off with what an agent would do? For instance, can you give it specific task like open up Microsoft Word? Write an e-mail. Answer phones?
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?
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.
@@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).
I built a python script to get around the confirmation requirement
@agentofenhanced2428 also definitely a way!
@@agentofenhanced2428 Imagine that Tom Hardy meme template here: You Like Living Dangerously
Claude is my favorite LLM.
Use Agents for non-linear tasks, and normal operations for linear, predictable tasks that don't require decision-making.
Is anyone else getting the problem - could not connect MCP server brave search and how did they resolve this?
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!
for windows Windows equivalent commands:
1. Open the folder: Press Windows + R, type "%APPDATA%\Claude" and hit Enter
2. Create the file: From Command Prompt, run:
mkdir "%APPDATA%\Claude"
type nul > "%APPDATA%\Claude\claude_desktop_config.json"
3. Edit the file: notepad "%APPDATA%\Claude\claude_desktop_config.json"
Hello,
I have done all this but it is not still working, pls can I DM you on LinkedIn so that you can help me? I will be glad if you say yes
@@codewithzubeidhello can I DM?
@@ezeokekeemeka4379 Hey, I got the sqllite mcp right, but I've been struggling to get the github and bravesearch
@@ezeokekeemeka4379 yes
@codewithzubeid ok what is your linkedin name or account?
Can claude agent build a fullstack web app?
My experience is that it can write code for a full stack web app, but you have to keep checking it's changes every step to undo bad ones
Absolutely.
it will be a disaster if it is complex and didn't see similar projects in its training😂🤣
Can we link this agent from api? Let’s say I want to automate websites creations
Claude actually built me
Amazing video TYSM 👍
Will this work with the free version of Claude? or do we need the paid for this demo?
Why am I the only one it doesn't work for without any explanation?
I did everything according to the video, but in practice I log into cloud and nothing new is added to the software :(
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.
I love Claude so much! 😂
Is this something helpful for api? I built my own UI with embedding because I can’t get shit done with Claude on OS or Web because of their rate limits. DIY projects lol.
Same issue here, the amount off issues it has, while less than Chat GPT, I get maybe one thing done then out of time, then start again and it messes up stuff from the last time.
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…
The AI can now access your data, for example, tell me which students are struggling, or which customers spend the most, etc
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?
Anthropic flexing again!
Hey David. I've finished the step 5, however my Claude Desktop is showing me this message: "Could not connect to MCP server brave-search". Would you know how to fix it? Thx
This is awesome 🎉
Thank you David for sharing the knowledge, can you compare the MPC claude with Replit?
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?
where to find other tools? and how to make my custom tool?
Opening Claude I'm still receiving the following error "Could not connect to MCP server brave-search". Any idea?
I made it! Thanks man! Amazing tutorial
@@pietropiga1079 How did you make it? I'm stuck at this error myself.
@@pietropiga1079 How did you solve this?
@@pietropiga1079 how? i am having the same issue
@@pietropiga1079 How? :) I'm still getting the error, on Windows.
It says This app is available only on the App Store for iPhone and iPad.
Codeium is great as well :)
TURN OFF YOUR VPN IF YOUR HAVING ISSUES RESTARTING CLAUDE AND GETTING IT TO CONNECT.
07:40 you can't delete files. I tested it and there is not such a functionality. So don't worry nothing crazy is going to happen.
Is there a way to make this work with Linux since there is no Claude App?
I had the same question, can it work on Linux or a Chromebook, or in the cloud without having to download something to a windows or mac?
I see no reason I should be getting the following error message, but I am getting it anyway, and I need help to resolve it, please:
"There was an error reading or parsing claude_desktop_config.json: SyntaxError: Unexpected non-whitespace character after JSON at position 251 (line 15 column 1)".
This error occurs after adding the GitHub server code. The brave-search is working just fine.
Cline eats cursor on breakfast :)
David please advise me, now i use and pay chatgpt and I'm pretty satisfied but recently i hear a lot Claude is better, should I switch subscription to Claude? Greetings from Serbia
If you can only afford one, I wouldn't, I think ChatGPT is a better all-rounder, being able to do more tasks, but I use Claude more when I have both if that makes sense.
@@matyasstoch8893 thank you, you're right that chatgpt is a good all-rounder and i really got used to several custom gpts, but i will research more about Claude's features and limits, idk if it's the same case as cgpt, even if you have active subscription, there are some limits for certain models..
Anyone getting an error "Cannot connect to MCP server brave-search"?
Cursor or Windsurfer Ai? Which one do you think is better?
With Windsurf, I have built a CrewAI multi agent system with agents interacting with each other and calling GPT4 (currently) and orchestrating those interactions and so far I have spent about 8 hours working on it. It is able to create mock test data and run a complete test in a virtual environment and I have a front end ready to start hooking into it. Cascade is running on its own proprietary model and imo it is very intuitive in how it assists you. I have found that I must run test after test and give it the results along with my own context to help it understand. I have also found that I need to have it generate a summary of what is going wrong and then I hand it over to Claude externally and then turn Claude's response back around to resolve. That is where this gets SUPER powerful is when you start having multiple instances of Claude working together....I think maybe even using different LLMs and compiling their collective thoughts could be even more powerful to create diversity of output.
@@mroberts7519what about memory with any model that you are using since it is a back and forth situation...any ideas
Can someone explain, for a none dev, what’s so groundbreaking about this, then end result is a simple webpage. Can these same setups be used for more complex tasks?
I'm a dev. What the guy in the video is using it for is completely irrelevant especially to a non-dev. Claude ai is likely much more powerful. Find a better example of its capabilities.
It's saying "Could not attach to MCP Server brave-search". And no tools are appearing :(
It's great they are pushing forward but commercially and in the real world these models have to be integrated, plugged together with other things and have UI, Backend, and Interconnected pieces. They will not build everything for you, they don't even do fast conversational due to the complexities of LLM's. The best avenue is NLU and LLM's like Claude then bring in all your other pieces even if say Claude assists you in generative AI elements or plugging things together.
we are so back
I get this error:
Failed to call tool create_or_update_file Error: mcp error -32603: invalid argument
Are there any approaches to get around usage limits? Can I use my anthropic API key for example? I described a simple web app and within a few mins I hit usage limits. Not sure how this is useful if thats the case.
can we do this using anthropic web app
Not yet.
DO you have a beginners course
Bro .. what about chatgpt plus? They released o1. Im a developer (student) and also use if for personal.. and i just bought it. so there is no other agent framework to make this kind of similar agents using windsurf?
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.
What's on his nose?
Did anyone find a workaround to the Unprocessable Entity Error? I'm pretty sure my PA token had all the permissions available
Any idea how to make it read local PDFs? I set up a file system server and it works for code, but can't read PDFs. You have to either upload them to the chat via the UI or use the PDF API. Would be super cool if you could use MCP to read local PDFs
i dont get it! is it like wake up brush my teeth , put on my band aid🤔🤔?
We all know the MCP is the Master Control Program
astonishing
Do you need Claude pro ?
How can I allow the agent to control my Twitter account?
this path (~/Library/Application\ Support/Claude) doesn't exist on my desktop even though I have claude installed. anyone able to help?
What operating system are you using?
In windows it is hidden. IE. Mine is here
C:\Users
ew user\AppData\Roaming\Claude
@@MarkAnthonyBartholomewI No I am using mac os version 15,1,1
@@elijahmuraoka Man the only Mac I know is the Big Mac. Sorry Bro.
@@MarkAnthonyBartholomewINo worries thanks for replying!
OMG that was a nightmare but I got it to work on my PC
Can you share what you did that wasn’t covered in this video?
I am getting a "Could Not Connect to MCP server brave-search" error when re-starting Claude.
Any thoughts on what i may have done wrong or missed?
I have gone through everything step by step carefully, and have inpout my API key, etc.
I can't see anything that I may have missed
When i added the GitHub token, I get the same error with connecting to MCP GitHub Server, and now I'm getting a 3rd error "Internal Server Error"
Just try this and try again "npm install -g @modelcontextprotocol/server-brave-search". i hope this will work