Using MCP to connect LLM with Local files #684
Unanswered
GITMlearner
asked this question in
Q&A
Replies: 1 comment
|
hey, this is basically what motivated me to build https://github.com/valtors/relay you don't need to write a server from scratch. easiest path:
{
"mcpServers": {
"files": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/your/folder"]
}
}
}replace
a few gotchas:
if you want more than files (images, pdfs, web fetch, etc) in one server instead of installing five different ones, that's what Relay tries to solve ( hope that helps |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Pre-submission Checklist
Question Category
Your Question
Hi Developers, I want to know how to create Model context protocol with existing LLM ,Basically I want to read , create , write Files inside my Local folder using LLM prompting
All reactions