It Tools MCP
什麼是IT Tools MCP服務器?
IT Tools MCP服務器是一個提供112個IT工具的Model Context Protocol (MCP)服務,涵蓋編碼解碼、文本處理、網絡工具等多個領域。它通過MCP協議為開發者和系統管理員提供便捷的工具訪問方式。如何使用IT Tools MCP服務器?
可以通過多種方式使用該服務器:在VS Code中配置MCP插件,或直接使用Docker運行。用戶只需發送JSON-RPC請求即可調用各種工具。適用場景
適用於開發人員、系統管理員和IT專業人員的各種日常任務,如密碼生成、文本轉換、網絡調試等。特別適合需要快速訪問多個工具的場景。主要功能
多工具集成集成了112個常用的IT工具,覆蓋編碼解碼、文本處理、網絡調試等多個領域。
跨平臺支持支持Node.js和Docker兩種方式運行,適用於不同開發環境。
易於集成可以輕鬆集成到VS Code等開發工具中,提升工作效率。
豐富的工具類別包含Ansible工具、顏色轉換、數據格式轉換等14個工具類別。
優勢與侷限性
優勢
提供大量常用IT工具,減少手動操作
支持多種使用方式,適應不同開發環境
界面友好,易於集成到現有工作流中
侷限性
對於非技術用戶可能需要一定的學習成本
部分高級功能可能需要更復雜的配置
如何使用
安裝與配置
根據需求選擇Node.js或Docker方式進行安裝。例如,在VS Code中配置MCP插件。
啟動服務器
運行MCP服務器,確保其能夠接收和處理請求。
調用工具
通過發送JSON-RPC請求來調用特定工具,例如生成UUID或進行Base64編碼。
使用案例
安全密碼生成使用密碼生成工具創建一個安全的隨機密碼。
文本轉換將Markdown文本轉換為HTML格式。
常見問題
IT Tools MCP服務器是否支持所有操作系統?
IT Tools MCP服務器支持Linux平臺,包括amd64和arm64架構。
如何獲取最新的工具列表?
可以在GitHub倉庫查看最新版本的工具列表和更新日誌。
是否可以自定義添加新的工具?
是的,可以通過貢獻代碼或提交PR來添加新的工具。
相關資源
GitHub倉庫
項目源代碼和文檔
Docker Hub
Docker鏡像下載和使用說明
NPM包
Node.js包的安裝和使用指南
安裝
複製以下命令到你的Client進行配置
注意:您的密鑰屬於敏感信息,請勿與任何人分享。
🚀 IT Tools MCP Server
IT Tools MCP Server 是一個全面的模型上下文協議(MCP)服務器,為開發者、系統管理員和 IT 專業人員提供了 112 種常用的 IT 工具和實用程序,可滿足編碼、文本處理、網絡操作等多種開發與 IT 任務需求。
🚀 快速開始
此 MCP 服務器為開發者、系統管理員和 IT 專業人員提供了 112 種常用 IT 工具和實用程序的訪問途徑,涵蓋編碼/解碼、文本處理、哈希、網絡實用程序等常見開發和 IT 任務的完整工具集。
✨ 主要特性
- 工具豐富:提供 112 種工具,涵蓋 14 個類別,滿足多樣化的開發和 IT 任務需求。
- 多方式集成:支持在 VS Code 中使用,可通過 Node 或 Docker 部署。
- AI 輔助開發:藉助多種 AI 工具進行開發,保證代碼質量和開發效率。
- 易於擴展:方便添加新工具,遵循一定規範即可快速集成。
📦 安裝指南
在 VS Code 中使用
將以下內容添加到 VS Code 的 settings.json
中:
Node
{
"mcp": {
"servers": {
"it-tools": {
"command": "npx",
"args": [
"it-tools-mcp"
],
"env": {}
}
}
}
}
Docker
{
"mcp": {
"servers": {
"it-tools": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--init",
"--security-opt", "no-new-privileges:true",
"--cap-drop", "ALL",
"--read-only",
"--user", "1001:1001",
"--memory=256m",
"--cpus=0.5",
"--name", "it-tools-mcp",
"wrenchpilot/it-tools-mcp:latest"
]
}
}
}
交互式模式
docker run -it --rm wrenchpilot/it-tools-mcp:latest
編程式使用
# 生成 UUID
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"uuid-generate","arguments":{}}}' | \
docker run -i --rm wrenchpilot/it-tools-mcp:latest
# 將文本編碼為 Base64
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"base64-encode","arguments":{"text":"Hello World"}}}' | \
docker run -i --rm wrenchpilot/it-tools-mcp:latest
💻 使用示例
基礎用法
# 生成 UUID
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"uuid-generate","arguments":{}}}' | \
docker run -i --rm wrenchpilot/it-tools-mcp:latest
高級用法
# 生成多個隨機端口
echo '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"random-port","arguments":{"count":3,"min":1024,"max":65535}}}' | \
docker run -i --rm wrenchpilot/it-tools-mcp:latest
🛠️ 工具類別
此 MCP 服務器提供涵蓋 14 個類別的 112 種工具:
- Ansible 工具 (5 種工具):Vault 加密/解密、清單解析器、劇本驗證器、參考資料
- 顏色工具 (2 種工具):十六進制 ↔ RGB 轉換
- 數據格式 (12 種工具):JSON、XML、YAML、SQL、TOML、Markdown ↔ HTML 轉換、電話號碼格式化
- 開發工具 (6 種工具):正則表達式測試、cron 表達式生成、列表轉換、代碼美化器、Markdown 目錄生成
- Docker 工具 (5 種工具):Compose 驗證、轉換工具、Traefik 生成器、參考資料
- 編碼與解碼 (8 種工具):Base64、URL、HTML 實體、文本轉二進制
- 取證工具 (3 種工具):文件類型識別、Microsoft SafeLinks 解碼、URL 清理與還原
- ID 與代碼生成器 (4 種工具):UUID、ULID、二維碼、SVG 佔位符
- 數學與計算 (6 種工具):表達式求值、進制轉換、溫度、百分比、Unix 時間戳、羅馬數字
- 網絡與系統 (23 種工具):IPv4/IPv6 子網、URL 解析、MAC 地址、ps、top、cat、head、tail、grep、ping、nslookup、telnet、dig、ssh、scp、curl、IBAN 驗證
- 物理 (3 種工具):角度、能量和功率單位轉換
- 安全與加密 (12 種工具):哈希 (MD5、SHA1、SHA256、SHA512)、HMAC、JWT、bcrypt、密碼、令牌、OTP、BIP39
- 文本處理 (19 種工具):大小寫轉換、統計、差異比較、ASCII 藝術字、北約音標字母表、URL 友好化、Unicode
- 實用工具 (7 種工具):電子郵件規範化、MIME 類型、HTTP 狀態碼、設備信息、CSS 美化器、REM/PX 單位轉換
📸 截圖示例
密碼哈希生成示例
ASCII 藝術字生成示例
這些示例展示瞭如何在 VS Code Copilot Chat 中使用 IT Tools MCP 服務器進行安全密碼哈希生成和創意 ASCII 藝術字生成。
📚 詳細文檔
可用工具
工具 | 描述 | 參數 |
---|---|---|
Ansible 工具 | ||
ansible-inventory-generator |
生成 Ansible 清單 | hosts: string[] , groups?: Record<string, string[]> , variables?: Record<string, any> |
ansible-playbook-validator |
驗證 Ansible 劇本 YAML | playbook: string |
ansible-reference |
Ansible 語法和模塊參考 | query?: string |
ansible-vault-decrypt |
解密 Ansible Vault 數據 | data: string , password: string |
ansible-vault-encrypt |
使用 Ansible Vault 加密數據 | data: string , password: string |
顏色工具 | ||
color-hex-to-rgb |
將十六進制轉換為 RGB | hex: string |
color-rgb-to-hex |
將 RGB 轉換為十六進制 | r: number , g: number , b: number |
數據格式 | ||
html-to-markdown |
將 HTML 轉換為 Markdown | html: string |
json-diff |
比較 JSON 對象 | json1: string , json2: string |
json-format |
格式化並驗證 JSON | json: string , indent?: number |
json-minify |
壓縮 JSON | json: string |
json-to-csv |
將 JSON 轉換為 CSV | json: string , delimiter?: string |
json-to-toml |
將 JSON 轉換為 TOML | json: string |
markdown-to-html |
將 Markdown 轉換為 HTML | markdown: string |
phone-format |
解析並格式化電話號碼 | phoneNumber: string , countryCode?: string |
sql-format |
格式化 SQL | sql: string , dialect?: 'sql' | 'mysql' | 'postgresql' | 'sqlite' | 'mariadb' | 'db2' | 'plsql' | 'n1ql' | 'redshift' | 'spark' | 'tsql' | 'trino' | 'bigquery' (可選,默認: 'sql') |
toml-to-json |
將 TOML 轉換為 JSON | toml: string |
xml-format |
格式化 XML | xml: string , indent?: number |
yaml-format |
格式化 YAML | yaml: string |
開發工具 | ||
crontab-generate |
生成 cron 表達式 | minute?: string , hour?: string , dayOfMonth?: string , month?: string , dayOfWeek?: string |
html-prettifier |
格式化並美化 HTML | html: string , indent?: number |
javascript-prettifier |
格式化並美化 JavaScript | javascript: string , indent?: number |
list-converter |
轉換列表格式 | list: string , inputFormat: 'comma' | 'semicolon' | 'newline' | 'space' | 'pipe' , outputFormat: 'comma' | 'semicolon' | 'newline' | 'space' | 'pipe' | 'json' | 'quoted' , trim?: boolean |
markdown-toc-generator |
為 Markdown 生成目錄 | markdown: string , maxDepth?: number |
regex-tester |
測試正則表達式 | pattern: string , text: string , flags?: string |
Docker 工具 | ||
docker-compose-to-docker-run |
將 Compose 轉換為 Docker run 命令 | compose: string , service?: string |
docker-compose-validator |
驗證 Docker Compose YAML | compose: string |
docker-reference |
Docker 命令和語法參考 | query?: string |
docker-run-to-docker-compose |
將 Docker run 轉換為 Compose | command: string |
traefik-compose-generator |
生成 Traefik Docker Compose | domain: string , service: string , port?: number , network?: string |
編碼與解碼 | ||
base64-decode |
解碼 Base64 文本 | text: string |
base64-encode |
將文本編碼為 Base64 | text: string |
html-decode |
解碼 HTML 實體 | text: string |
html-encode |
編碼 HTML 實體 | text: string |
html-entities-extended |
擴展 HTML 實體編碼/解碼 | text: string , operation: 'encode' | 'decode' |
text-to-binary |
將文本轉換為二進制,反之亦然 | input: string , operation: 'encode' | 'decode' |
text-to-unicode |
將文本轉換為 Unicode,反之亦然 | input: string , operation: 'encode' | 'decode' |
url-decode |
URL 解碼文本 | text: string |
url-encode |
URL 編碼文本 | text: string |
取證工具 | ||
file-type-identifier |
從內容中識別文件類型 | data: string , filename?: string |
safelink-decoder |
解碼 Microsoft SafeLinks | url: string |
url-fanger |
清理和還原 URL 以進行分析 | text: string , operation: 'fang' | 'defang' |
ID 與代碼生成器 | ||
qr-generate |
為任何內容生成二維碼 | text: string , size?: number - 支持 URL、WiFi (WIFI:T:WPA;S:network;P:password;;)、聯繫人信息等 |
svg-placeholder-generator |
生成 SVG 佔位符 | width?: number , height?: number , text?: string , backgroundColor?: string , textColor?: string |
ulid-generate |
生成 ULID | 無 |
uuid-generate |
生成 UUID v4 | 無 |
數學與計算 | ||
math-evaluate |
計算表達式 | expression: string |
number-base-converter |
轉換數字進制 | number: string , fromBase: number , toBase: number |
percentage-calculator |
計算百分比 | operation: 'percentage-of' | 'what-percentage' | 'percentage-change' , value1: number , value2: number |
roman-numeral-converter |
轉換羅馬數字 | input: string |
temperature-converter |
轉換溫度 | temperature: number , from: 'celsius' | 'fahrenheit' | 'kelvin' , to: 'celsius' | 'fahrenheit' | 'kelvin' |
unix-timestamp-converter |
轉換時間戳 | input: string |
網絡與系統 | ||
cat |
顯示文件內容 | file: string |
curl |
HTTP 客戶端 (GET、POST 等) | url: string , method?: string , headers?: Record<string, string> , body?: string |
dig |
DNS 查詢 (自定義類型) | target: string , type?: string |
grep |
在文件中搜索模式 | file: string , pattern: string |
head |
顯示文件的前 N 行 | file: string , lines?: number |
iban-validate |
驗證 IBAN | iban: string |
ip-subnet-calculator |
計算 IPv4 子網 | ip: string , cidr: number |
ipv4-subnet-calc |
增強型 IPv4 子網計算 | cidr: string |
ipv6-ula-generator |
生成 IPv6 ULA | globalId?: string |
mac-address-generate |
生成 MAC 地址 | prefix?: string , separator?: ':' | '-' |
nslookup |
DNS 查找 (A/AAAA/CNAME) | target: string |
ping |
ping 主機 | target: string , count?: number |
ps |
列出正在運行的進程 | 無 |
random-port |
生成隨機端口 | count?: number , min?: number , max?: number , exclude?: number[] |
scp |
在遠程主機之間複製文件 (SFTP) | target: string , user: string , direction: 'upload'|'download' , localPath: string , remotePath: string , privateKey?: string |
ssh |
執行 SSH 命令 | target: string , user: string , command: string |
tail |
顯示文件的最後 N 行 | file: string , lines?: number |
telnet |
測試 TCP 連接性 | target: string , port: number |
top |
顯示 CPU 使用率最高的進程 | 無 |
url-parse |
解析 URL 組件 | url: string |
物理 | ||
angle-converter |
轉換角度單位 | value: number , from: 'degrees' | 'radians' | 'gradians' , to: 'degrees' | 'radians' | 'gradians' |
energy-converter |
轉換能量單位 | value: number , from: 'joules' | 'calories' | 'kwh' | 'btu' , to: 'joules' | 'calories' | 'kwh' | 'btu' |
power-converter |
轉換功率單位 | value: number , from: 'watts' | 'kilowatts' | 'horsepower' | 'btu_per_hour' , to: 'watts' | 'kilowatts' | 'horsepower' | 'btu_per_hour' |
安全與加密 | ||
basic-auth-generator |
生成基本認證頭 | username: string , password: string |
bcrypt-hash |
生成/驗證 bcrypt 哈希 | password: string , rounds?: number , hash?: string |
bip39-generate |
生成 BIP39 助記詞 | wordCount?: '12' | '15' | '18' | '21' | '24' |
hash-md5 |
生成 MD5 哈希 | text: string |
hash-sha1 |
生成 SHA1 哈希 | text: string |
hash-sha256 |
生成 SHA256 哈希 | text: string |
hash-sha512 |
生成 SHA512 哈希 | text: string |
hmac-generator |
生成 HMAC | message: string , key: string , algorithm?: 'sha1' | 'sha256' | 'sha512' |
jwt-decode |
解碼 JWT 令牌 | token: string |
otp-code-generator |
生成 TOTP 代碼 | secret: string , digits?: number , period?: number |
password-generate |
生成安全密碼 | length?: number , includeUppercase?: boolean , includeLowercase?: boolean , includeNumbers?: boolean , includeSymbols?: boolean |
token-generator |
生成安全令牌 | length?: number , charset?: 'alphanumeric' | 'hex' | 'base64' | 'custom' , customChars?: string |
文本處理 | ||
ascii-art-text |
生成 ASCII 藝術字 | text: string , font?: string (支持 295 多種 figlet 字體) |
distinct-words |
從文本中提取唯一單詞 | text: string , caseSensitive?: boolean |
emoji-search |
搜索表情符號 | query: string |
lorem-ipsum-generator |
生成 Lorem Ipsum 文本 | type?: 'words' | 'sentences' | 'paragraphs' , count?: number |
numeronym-generator |
生成數字縮寫詞 | text: string |
slugify-string |
將文本轉換為 URL 友好格式 | text: string , separator?: string , lowercase?: boolean |
string-obfuscator |
混淆文本 | text: string , method?: 'html-entities' | 'unicode' | 'base64' |
text-camelcase |
將文本轉換為 camelCase | text: string |
text-capitalize |
大寫單詞首字母 | text: string |
text-diff |
比較文本 | text1: string , text2: string |
text-kebabcase |
將文本轉換為 kebab-case | text: string |
text-lowercase |
將文本轉換為小寫 | text: string |
text-pascalcase |
將文本轉換為 PascalCase | text: string |
text-snakecase |
將文本轉換為 snake_case | text: string |
text-stats |
獲取文本統計信息 | text: string |
text-to-nato-alphabet |
將文本轉換為北約音標字母表 | text: string |
text-to-unicode-names |
將文本轉換為 Unicode 字符名稱 | text: string |
text-uppercase |
將文本轉換為大寫 | text: string |
實用工具 | ||
css-prettifier |
格式化並美化 CSS | css: string , indent?: number |
device-info |
獲取系統信息 | 無 |
email-normalizer |
規範化電子郵件地址 | email: string |
http-status-codes |
HTTP 狀態參考 | code?: number |
mime-types |
查找 MIME 類型 | input: string , lookupType?: 'extension-to-mime' | 'mime-to-extension' |
port-numbers |
查找端口號分配 | port?: number , service?: string |
rem-px-converter |
在 REM 和 PX 單位之間轉換 | value: number , conversion: 'rem-to-px' | 'px-to-rem' , baseFontSize?: number |
🔧 技術細節
架構與開發
使用 TypeScript、Zod 驗證和 MCP SDK 構建,確保操作的健壯性和類型安全性。
AI 輔助開發
本項目使用 VS Code、Copilot Chat Agent、Playwright MCP 和 Claude Sonnet 4 模型 進行開發,展示了 AI 輔助軟件開發的強大功能:
- 智能代碼生成:Claude Sonnet 分析需求並生成全面的工具實現。
- 模式驗證:自動識別並解決 112 種工具中的 JSON 模式驗證問題。
- Docker 優化:創建生產就緒的 Docker 工作流和多階段構建。
- 文檔生成:生成包含示例和工具參考表的全面 README。
- 測試:在整個代碼庫中實現強大的錯誤處理和驗證。
AI 的關鍵貢獻:
- 🔧 工具實現:所有 112 種工具均在 AI 輔助下設計和實現。
- 📦 Docker 設置:通過 GitHub Actions CI/CD 管道完成完整的容器化。
- 🔍 模式清理:系統地從所有工具定義中移除不支持的 Zod 關鍵字。
- 📚 文檔:包含使用示例和工具目錄的全面 README。
- 🚀 生產就緒:發佈到 Docker Hub,添加徽章並進行專業部署設置。
添加新工具
- 在
src/tools/
下的適當類別中創建工具目錄。 - 在其
index.ts
中使用 Zod 定義工具的輸入模式。 - 導出註冊函數以實現動態加載。
- 使用
npm run build
重新構建。
項目結構
src/
├── index.ts # 主 MCP 服務器,支持動態工具加載
└── tools/ # 模塊化工具類別
├── ansible/ # 5 種 Ansible 自動化工具
├── color/ # 2 種顏色轉換工具
├── crypto/ # 9 種加密和安全工具
├── dataFormat/ # 12 種數據格式轉換工具
├── development/ # 6 種開發實用工具
├── docker/ # 5 種 Docker 和容器化工具
├── encoding/ # 8 種編碼/解碼工具
├── forensic/ # 3 種數字取證工具
├── idGenerators/ # 4 種 ID 和代碼生成工具
├── math/ # 6 種數學運算工具
├── network/ # 23 種網絡實用工具
├── physics/ # 3 種物理計算工具
├── text/ # 19 種文本處理工具
└── utility/ # 7 種通用實用工具
🤝 貢獻指南
歡迎貢獻代碼!請遵循以下指南:
提交消息格式
本項目使用 Conventional Commits 來確保提交消息清晰一致。
版本管理:
- 🤖 自動版本升級 - Git 鉤子根據提交消息類型自動升級版本。
- 🤖 自動發佈 - CI/CD 檢測到更改後自動發佈。
- 🏷️ Git 標籤 - 根據常規提交消息自動創建。
示例:
git commit -m "feat: add new encryption tool" # → 次要版本升級
git commit -m "fix: resolve base64 decoding issue" # → 補丁版本升級
git commit -m "docs: improve README examples" # → 補丁版本升級
git commit -m "feat!: breaking API change" # → 主要版本升級
# 版本由 git 鉤子自動升級並提交
# 無需手動執行 npm version 命令!
git push
📖 有關設置說明,請參閱 COMMIT_TEMPLATE_SETUP.md。
開發流程
- 分叉倉庫。
- 運行
./setup-commit-template.sh
(推薦)。 - 創建功能分支。
- 根據項目結構進行更改。
- 使用常規提交消息。
- 提交拉取請求。
CI/CD 管道將自動執行以下操作:
- ✅ 構建並測試更改。
- 🏷️ 根據提交消息升級版本 (合併到主分支時)。
- 📦 發佈到 Docker Hub 和 NPM。
- 🚀 創建 GitHub 版本。
📄 許可證
本項目採用 MIT 許可證,詳情請參閱 LICENSE。
🔗 相關項目
受 IT Tools 啟發 - 面向開發者的在線工具。
本項目整合了 @sharevb fork 中的部分工具,該分支擴展了 IT Tools 並增加了額外的實用程序和增強功能。
Z
Zen MCP Server
Zen MCP是一個多模型AI協作開發服務器,為Claude和Gemini CLI等AI編碼助手提供增強的工作流工具和跨模型上下文管理。它支持多種AI模型的無縫協作,實現代碼審查、調試、重構等開發任務,並能保持對話上下文在不同工作流間的延續。
Python
11
5分
C
Container Use
Container Use是一個開源工具,為編碼代理提供容器化隔離環境,支持多代理並行開發且互不干擾。
Go
11
5分

Search1api
Search1API MCP Server是一個基於Model Context Protocol (MCP)的服務器,提供搜索和爬取功能,支持多種搜索服務和工具。
TypeScript
332
4分

Duckduckgo MCP Server
已認證
DuckDuckGo搜索MCP服務器,為Claude等LLM提供網頁搜索和內容抓取服務
Python
813
4.3分

MCP Alchemy
已認證
MCP Alchemy是一個連接Claude Desktop與多種數據庫的工具,支持SQL查詢、數據庫結構分析和數據報告生成。
Python
316
4.2分

Postgresql MCP
一個基於FastMCP庫的PostgreSQL數據庫MCP服務,提供對指定表的CRUD操作、模式檢查和自定義SQL查詢功能。
Python
104
4分

Agentic Radar
Agentic Radar是一個用於分析和評估代理系統的安全掃描工具,幫助開發者、研究人員和安全專家理解代理系統的工作流程並識別潛在漏洞。
Python
547
5分

MCP Scan
MCP-Scan是一款針對MCP服務器的安全掃描工具,用於檢測提示注入、工具汙染和跨域升級等常見安全漏洞。
Python
609
5分
精選MCP服務推薦

Baidu Map
已認證
百度地圖MCP Server是國內首個兼容MCP協議的地圖服務,提供地理編碼、路線規劃等10個標準化API接口,支持Python和Typescript快速接入,賦能智能體實現地圖相關功能。
Python
726
4.5分

Markdownify MCP
Markdownify是一個多功能文件轉換服務,支持將PDF、圖片、音頻等多種格式及網頁內容轉換為Markdown格式。
TypeScript
1.7K
5分

Firecrawl MCP Server
Firecrawl MCP Server是一個集成Firecrawl網頁抓取能力的模型上下文協議服務器,提供豐富的網頁抓取、搜索和內容提取功能。
TypeScript
3.9K
5分

Sequential Thinking MCP Server
一個基於MCP協議的結構化思維服務器,通過定義思考階段幫助分解複雜問題並生成總結
Python
299
4.5分

Edgeone Pages MCP Server
EdgeOne Pages MCP是一個通過MCP協議快速部署HTML內容到EdgeOne Pages並獲取公開URL的服務
TypeScript
267
4.8分

Notion Api MCP
已認證
一個基於Python的MCP服務器,通過Notion API提供高級待辦事項管理和內容組織功能,實現AI模型與Notion的無縫集成。
Python
142
4.5分

Magic MCP
Magic Component Platform (MCP) 是一個AI驅動的UI組件生成工具,通過自然語言描述幫助開發者快速創建現代化UI組件,支持多種IDE集成。
JavaScript
1.7K
5分

Context7
Context7 MCP是一個為AI編程助手提供即時、版本特定文檔和代碼示例的服務,通過Model Context Protocol直接集成到提示中,解決LLM使用過時信息的問題。
TypeScript
5.3K
4.7分