MCP正文
MCP Contxt的营销网站,这是一款用于在Claude Code中管理MCP服务器的macOS菜单栏应用程序。
关于
MCP Contxt是一个本地macOS应用程序,可以轻松浏览、安装和管理Claude Code的MCP(模型上下文协议)服务器。不再手动编辑JSON配置文件或运行终端命令。
特性
- 浏览和发现 --探索100多台MCP服务器的精选目录
- 一键安装 --只需单击一下即可将服务器添加到Claude Code
- 菜单栏访问 --直接从菜单栏管理服务器
- 服务器详细信息 --查看有关每台服务器的全面信息
- 进出口 --跨机器或与团队共享配置
技术栈
- 框架: Laravel 12
- 前端: 通过Inertia.js实现React 19+TypeScript
- 造型: 顺风CSS v4
- 组件: shadcn/ui
- 身份验证: Laravel Fortify
- 测试: 害虫PHP
需求
- PHP 8.2+
- Node.js 20+
- 作曲家
安装
# Clone the repository
git clone https://github.com/carlweis/mcpcontxt-web.git
cd mcpcontxt
# Install dependencies
composer install
npm install
# Set up environment
cp .env.example .env
php artisan key:generate
# Run migrations
php artisan migrate
# Build assets
npm run build发展
# Start the development server
composer dev
# Or run separately
php artisan serve
npm run dev配置
启动模式
在等待列表和下载模式之间切换:
APP_LAUNCHED=false # Shows waitlist signup form
APP_LAUNCHED=true # Shows download button管理员访问权限
管理员登录可在 /admin/login.通过修补程序创建管理员用户:
php artisan tinkerUser::create([
'name' => 'Your Name',
'email' => 'your@email.com',
'password' => bcrypt('your-password'),
]);测试
# Run tests
php artisan test
# Run with coverage
composer test:coverage
# Run all checks (lint, analyse, tests)
composer test:all代码质量
# Format code (Pint)
composer lint
# Static analysis (PHPStan)
composer analyse
# Automated refactoring (Rector)
composer refactor:dry # Preview changes
composer refactor # Apply changes许可证
(C) 2026年卡尔·韦斯
