『不废话』之动手学MCP

如果你还没听过MCP(Model Context Protocol,模型上下文协议),不能说明你落伍了,而是技术发展太快,程序员继续卷死自己吧。

MCP:Anthropic于2024年11月底提出,旨在统一大型语言模型(LLM)与外部数据源和工具之间的通信协议。

动眼看

图片来源于网络

图片来源于网络

图片来源于网络

说人话

MCP host:指以LLM为核心,希望通过MCP访问数据的应用程序,如Claude desktop、Cherry Studio、ChatWise等。

MCP Server:轻量级程度,每个server都通过标准化的MCP公开特地功能,如获取当天日期server、当天日期的农历server(这些功能LLM默认没有)

MCP Client:与Server想对应 ,目前的应用场景基本上都是与host在一体,如上面动图展示。

MCP和tools:在MCP出现之前,LLM有一个tool的概念。MCP的出现就是为了统一协议,管你哪个LLM,只要符合MCP标准,大家都好干活,别每家大模型厂商搞的破烂玩意都要学一遍。

动手写

获取当前机器外网IP(脱裤子放屁)

from mcp.server.fastmcp import FastMCP
import httpx

server = FastMCP("ip-server")
@server.tool()
async def ip() -> str:
    """
    Obtain the public IP address of the current machine.
    Returns:
        str: The result of the IP.
    """
    async with httpx.AsyncClient() as client:
        response = await client.get("https://api64.ipify.org?format=json")
        if response.status_code != 200:
            return "Error: Failed to get IP."
        response = response.json()
        return response["ip"]

if __name__ == "__main__":
    server.run(transport="stdio")

从unsplash中获取图片

import os
from dataclasses import dataclass
from typing import Optional, List, Dict

import httpx
from dotenv import load_dotenv
from mcp.server.fastmcp import FastMCP

# Load environment variables
load_dotenv()

# Create an MCP server
mcp = FastMCP("Unsplash MCP Server")


@dataclass
class UnsplashPhoto:
    id: str
    description: Optional[str]
    urls: Dict[str, str]
    width: int
    height: int


@mcp.tool()
async def search_photos(
    query: str,
    page: int = 1,
    per_page: int = 10,
    order_by: str = "relevant",
    color: Optional[str] = None,
    orientation: Optional[str] = None,
) -> List[UnsplashPhoto]:
    """
    Search for Unsplash photos

    Args:
        query: Search keyword
        page: Page number (1-based)
        per_page: Results per page (1-30)
        order_by: Sort method (relevant or latest)
        color: Color filter (black_and_white, black, white, yellow, orange, red, purple, magenta, green, teal, blue)
        orientation: Orientation filter (landscape, portrait, squarish)

    Returns:
        List[UnsplashPhoto]: List of search results containing photo objects with the following properties:
            - id: Unique identifier for the photo
            - description: Optional text description of the photo
            - urls: Dictionary of available image URLs in different sizes
            - width: Original image width in pixels
            - height: Original image height in pixels
    """
    access_key = os.getenv("UNSPLASH_ACCESS_KEY") # 换成你自己的access_key
    if not access_key:
        raise ValueError("Missing UNSPLASH_ACCESS_KEY environment variable")

    params = {
        "query": query,
        "page": page,
        "per_page": min(per_page, 30),
        "order_by": order_by,
    }

    if color:
        params["color"] = color
    if orientation:
        params["orientation"] = orientation

    headers = {"Accept-Version": "v1", "Authorization": f"Client-ID {access_key}"}

    try:
        async with httpx.AsyncClient() as client:
            response = await client.get(
                "https://api.unsplash.com/search/photos", params=params, headers=headers
            )
            response.raise_for_status()
            data = response.json()

            return [
                UnsplashPhoto(
                    id=photo["id"],
                    description=photo.get("description"),
                    urls=photo["urls"],
                    width=photo["width"],
                    height=photo["height"],
                )
                for photo in data["results"]
            ]
    except httpx.HTTPStatusError as e:
        print(f"HTTP error: {e.response.status_code} - {e.response.text}")
        raise
    except Exception as e:
        print(f"Request error: {str(e)}")
        raise


def test_main():
    async def test_unsplash():
        res = await search_photos("Tesla car")
        print(res)

    import asyncio  # 添加: 导入asyncio模块

    asyncio.run(test_unsplash())  # 添加: 使用asyncio.run来运行异步test函数


def main():
    mcp.run(transport="stdio")


if __name__ == "__main__":
    # 运行
    # main()
    # 测试功能
    test_main()

代码改动自网络

动手用

1、下载Cherry Studio最新版(国内友好):Releases · CherryHQ/cherry-studio · GitHub

2、安装MCP本地运行环境:如何在 Cherry Studio 中使用 MCP | Vaayne's Tea House

3、下载MCP server(可选):GitHub - huangxinping/ip-mcp-server: A IP MCP server.

这里要特别说明一下:对于MCP来说,有stdio和sse两种模式(不懂没关系,后面你实测时会发现)。同时开源的MCP server,可能是用python写的,也可能是用node js写的,都能执行,看你有没有运行环境。

stdio:在本地(就是你自己的机器上)运行代码,在配置时可以直接拉取pypi上的,也可以直接执行你自己的代码,如下图这句话现在不懂没关系,玩着玩着你就懂了。

sse:服务上运行代码,这就省去了你本机需要MCP server代码的麻烦。当然在企业中,这种模式更好,老板写的server,你用就完了,还想看到我的代码。

4、Cherry Studio中配置各种MCP server:

5、用起来

动手藏

Open-Source MCP servers | Glama

Smithery - Model Context Protocol Registry

MCP Servers

Composio MCP Server

动脑想

MCP的出现解决了目前混沌的状态,大模型厂商各家都有自己的小九九,在强大的社区的推动下,也许各大厂会主动去适应MCP生态。另外,MCP、Agnet、Tool,这三者之间其实边界没那么清晰,还是得需应用厂商自己想怎么结合进业务中。

不要总是想自己能做什么,而要去想用户需要什么。别活着让自己爽的世界中,活在让别人爽的波涛汹涌之中,才能发财。

<think>好的,我现在需要帮助用户解决如何在VSCode中通过CLI使用MCP工具修改本地代码的问题。首先,我需要确认MCP工具的具体信息,但用户提到的MCP可能是指“Microsoft Configuration Pack”或“Multi-Cloud Platform”工具,过根据上下文,更可能是与代码管理或容器相关的工具,比如可能与Kubernetes相关的工具,因为用户引用了Virtual Kubelet的内容。过,这里可能存在混淆,因为用户提供的引用[2]提到的是Virtual Kubelet,而问题中的MCP可能是指其他工具。 接下来,我需要考虑用户可能提到的MCP工具是否是指某种特定的CLI工具,例如Azure的MCP(Microsoft Cloud Platform)工具,或者是其他第三方工具。由于信息足,可能需要做一些假设,或者建议用户确认工具的具体名称和文档。 然后,用户希望知道如何在VSCode的CLI中使用这个工具来修改本地代码。通常,VSCode的CLI可以通过命令行使用`code`命令打开文件或目录,或者使用扩展的CLI功能。如果MCP工具有自己的CLI命令,用户可能需要在终端中运行这些命令,并结合VSCode进行代码编辑。 可能的步骤包括: 1. 安装MCP工具并确保其CLI可用。 2. 在VSCode中打开终端,使用MCP命令进行代码修改操作。 3. 配置VSCode的任务或扩展来集成MCP工具。 需要检查是否有相关的文档或社区资源,例如GitHub仓库或官方指南,说明如何将MCP与VSCode结合使用。如果用户提供的引用中有相关项目,可能需要参考。例如,引用[2]提到的Virtual Kubelet可能与Kubernetes配置有关,但确定是否直接相关。 另外,用户可能遇到的具体问题包括如何调用MCP命令、如何自动化代码修改流程,或者如何在VSCode中调试这些命令。需要提供具体的示例和步骤,并确保命令语法正确。 最后,生成相关问题需要考虑用户可能的后续疑问,比如配置问题、调试技巧或与其他工具的集成。</think>在Visual Studio Code(VSCode)中通过命令行(CLI)使用MCP工具修改本地代码,通常需要结合VSCode的终端功能和MCP工具的CLI命令。以下是具体步骤: ### 步骤1:安装并配置MCP工具 1. **确认MCP工具**:首先需明确MCP工具的具体定义。例如,若引用的是与Kubernetes相关的工具(如[Virtual Kubelet](https://github.com/virtual-kubelet/virtual-kubelet) [^2]),需安装其CLI组件。 2. **安装CLI**:通过包管理器(如`npm`、`pip`或官方脚本)安装MCP工具。例如: ```bash npm install -g mcp-cli # 假设MCP是npm包 ``` ### 步骤2:在VSCode中集成CLI 1. **打开VSCode终端**:使用快捷键`Ctrl+``或菜单栏`Terminal > New Terminal`启动集成终端。 2. **运行MCP命令**:在终端中执行MCP命令操作代码。例如,修改配置文件: ```bash mcp modify ./config.yaml --param=value ``` ### 步骤3:自动化脚本(可选) 将常用操作写入`package.json`或Shell脚本,通过VSCode任务运行: ```json // .vscode/tasks.json { "version": "2.0.0", "tasks": [{ "label": "Apply MCP Changes", "type": "shell", "command": "mcp apply --file=./src" }] } ``` ### 注意事项 - **路径问题**:确保CLI在VSCode的终端环境变量中可识别。 - **扩展支持**:若MCP提供VSCode扩展,可增强语法高亮和快捷操作。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值