PSMCP注册表
用于与MCP注册表API交互的PowerShell模块。用于模型上下文协议(MCP)服务器的社区驱动的注册表服务。
Anthropic创建的MCP注册表
安装
来自PowerShell库
从PowerShell库安装模块:
Install-Module -Name PSMCPRegistry然后导入它:
Import-Module PSMCPRegistry用法
获取服务器
从注册表中检索活动服务器的列表。
# Get first 100 servers
Get-MCPServer
# Filter servers by name, description, or repository URL
Get-MCPServer -Filter "python"
# Get raw server records
Get-MCPServer -RawAPI 参考
- 基本URL:https://registry.modelcontextprotocol.io/v0.1/
- 只读访问不需要身份验证
- 看 mcpRegistryDoc.md 获取API的完整详细信息
许可证
此项目根据Apache许可证2.0获得许可-请参阅 许可证 文件以获取详细信息。
