当前位置: 首页 > news >正文

最常见的MCP服务

1,网页爬取数据

注意,这个需要自己去注册账号然后给出api-key即可 https://www.firecrawl.dev/

{"mcpServers": {"firecrawl-mcp": {"command": "npx","args": ["-y", "firecrawl-mcp"],"env": {"FIRECRAWL_API_KEY": "你的密钥"}}}
}

2,高德地图

同样需要去官网申请apikey即可

{"mcpServers": {"amap-maps": {"command": "npx","args": ["-y","@amap/amap-maps-mcp-server"],"env": {"AMAP_MAPS_API_KEY": "api_key"}}}
}

3,MySQL

配置好自己本地的MySQL数据库信息:

"MYSQL_HOST": "localhost",

"MYSQL_USER": "root",

"MYSQL_PORT": "3306",

"MYSQL_PASSWORD": "123456",

"MYSQL_DATABASE": "你的数据库名称"

{"mcpServers": {"mysql": {"command": "npx","args": ["-y","@fhuang/mcp-mysql-server"],"env": {"MYSQL_HOST": "IP","MYSQL_USER": "USER","MYSQL_PORT": "PORT","MYSQL_PASSWORD": "password","MYSQL_DATABASE": "DATABASE"}}}
}

4,GitHub

先去https://github.com/settings/tokens申请自己的token,申请之后记得保存好自己的token,因为只会展示一次

然后配置即可:

"github" :{"isActive": true,"name": "github","command" :"cmd""args":["/c","npx","-y","@modelcontextprotocol/server-github'],"env" :{"GITHUB _PERSONAL ACCESS TOKEN": "YOUT TOKEN"}
}

5,Git

git":{"isActive": true,"command":"uvx',"args":["mcp-server-git"],"name":"git"}

6,记忆图谱memory

基于知识图谱的长期记忆系统用于维护上下文

使用本地知识图谱的持久内存的基本实现。这使 claude 可以在聊天中记住有关用户的信息。

{"name": "memory","isActive": true,"description": "Follow these steps for each interaction:\n\n1. User Identification:\n - You should assume that you are interacting with default_user\n - If you have not identified default_user, proactively try to do so.\n\n2. Memory Retrieval:\n - Always begin your chat by saying only \"Remembering...\" and retrieve all relevant information from your knowledge graph\n - Always refer to your knowledge graph as your \"memory\"\n\n3. Memory\n - While conversing with the user, be attentive to any new information that falls into these categories:\n a) Basic Identity (age, gender, location, job title, education level, etc.)\n b) Behaviors (interests, habits, etc.)\n c) Preferences (communication style, preferred language, etc.)\n d) Goals (goals, targets, aspirations, etc.)\n e) Relationships (personal and professional relationships up to 3 degrees of separation)\n\n4. Memory Update:\n - If any new information was gathered during the interaction, update your memory as follows:\n a) Create entities for recurring organizations, people, and significant events\n b) Connect them to the current entities using relations\n c) Store facts about them as observations","command": "npx","args": ["-y","@modelcontextprotocol/server-memory"]
}

7,控制台

{"mcpServers": {"desktop-commander": {"command": "cmd","args": ["/c","npx","-y","@smithery/cli@latest","run","@wonderwhy-er/desktop-commander","--key","cca951bf-4a7c-44a5-ad06-420e70567f14"]}}
}

8,该网址下继承了很多MCP工具供调用

https://github.com/punkpeye/awesome-mcp-servers

http://www.dtcms.com/a/392879.html

相关文章:

  • 如何安装tomcat服务器以及如何解决服务器的乱码问题
  • 软考中级习题与解答——第九章_信息安全(1)
  • 小迪安全v2023学习笔记(八十五讲)—— APP攻防反证书反代理反模拟器绕过XP框架
  • Oracle VM 设置CentOS7网络
  • lua代码解析1
  • C++特性之构造函数,析构函数和虚析构函数
  • 走进Linux的世界:gdb的使用
  • SCADE One vs Scade 6 - CNN池化层建模对比
  • uniapp | u-waterfall实现瀑布流商品列表(支持筛选查询)
  • C++优选算法精选100道编程题(附有图解和源码)
  • 五分钟系列-nm工具
  • 【龙泽科技】新能源汽车空调系统结构原理仿真教学软件
  • 设计一个图片上传服务,支持每秒5000张图片上传,并且要实时生成多种尺寸的缩略图。你觉得架构设计的要点有哪些?
  • NLP:Transformer优势详解
  • 基于SpringBoot+Vue的民宿管理系统(WebSocket及时通讯、腾讯地图API、支付宝沙盒支付、ECharts图形化分析)
  • Git版本管理工具入门及常用命令讲解---小白版
  • 芯脉:面向高速接口的SoC架构与完整性设计<2-2>
  • Go基础:Go语言流程控制详解
  • 【硬件-笔试面试题-103】硬件/电子工程师,笔试面试题(知识点:项目当中无人机的控制是怎么实现的)
  • 融智学的信息科学与智能科学(信智科学)基础研究
  • PyTorch 容器类详解:nn.Sequential、nn.ModuleList 与 nn.ModuleDict
  • 基于规则的专家系统对自然语言处理深层语义分析的影响与启示综合研究报告
  • 微服务配置管理
  • WinDivert学习文档之五-————编程API(七)
  • 【StarRocks】-- 异步物化视图实战
  • 应用随机过程(一)
  • 【项目实战 Day4】springboot + vue 苍穹外卖系统(套餐模块 完结)
  • 素材库网站分享
  • 第8节-PostgreSQL数据类型-Text
  • React-router和Vue-router底层实现原理