mcp-llm
MCP LLM is a server that provides access to LLMs using the LlamaIndexTS library. It features capabilities such as code generation, documentation generation, and question answering, supporting developers in their workflow efficiently.
GitHub Stars
63
User Rating
Not Rated
Favorites
0
Views
258
Forks
8
Issues
0
Installation
Difficulty
BeginnerEstimated Time
5-10 minutes
Installation
Installation
Prerequisites
Please specify required software and versions:Node.js: 18.0.0 or higher
npm: 8.0.0 or higher
Claude Desktop: Latest version
Installation Steps
1. Clone Repository
bash
git clone https://github.com/sammcj/mcp-llm
cd mcp-llm
2. Install Dependencies
bash
npm install
3. Build Project
bash
npm run build
4. Configure Claude Desktop
Editclaude_desktop_config.json to add the MCP server:
json
{
"mcpServers": {
"mcp-llm": {
"command": "node",
"args": ["path/to/server.js"]
}
}
}
5. Start Server
bash
npm start