drio
Open app

mcp_learning

Source

Learning how to build mcp-servers to connect in llms via langchain

Catalog onlyCatalog onlySTDIO

Overview

mcp_learning is a project focused on teaching users how to build mcp-servers that connect to large language models (LLMs) using the Langchain framework.

To use mcp_learning, follow the tutorials and documentation provided in the GitHub repository to set up your own mcp-server and connect it to LLMs.

  • Comprehensive guides on building mcp-servers - Integration with Langchain for LLM connectivity - Community support and resources available on GitHub
  1. Developing custom applications that utilize LLMs
  2. Experimenting with different configurations of mcp-servers
  3. Learning about server architecture and LLM integration

Add to your AI client

Use these steps to connect mcp_learning in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-learning-juanladeira": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-learning-juanladeira"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-learning-juanladeira": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-learning-juanladeira"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-learning-juanladeira": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-learning-juanladeira"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-learning-juanladeira": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-learning-juanladeira"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-learning-juanladeira": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-learning-juanladeira"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-learning-juanladeira": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-learning-juanladeira"
      ]
    }
  }
}