cursor-mcp-extension
Cursor MCPは、Cursor IDEとブラウザ間のコンテキスト共有を強化するChrome拡張機能です。コンソールログやエラーのキャプチャ、ネットワークリクエストの追跡、スクリーンショットの取得、選択したDOM要素の取得など、多様な機能を提供します。これにより、開発者は効率的に作業を進めることができます。
GitHubスター
4
ユーザー評価
未評価
フォーク
0
イシュー
0
閲覧数
2
お気に入り
0
Cursor MCP (Model Context Protocol)
A Chrome extension that integrates with Cursor IDE through the Model Context Protocol (MCP), allowing for enhanced context sharing between the browser and the IDE.
Features
- Capture console logs and errors
- Track network requests and responses
- Take screenshots
- Get selected DOM elements
- Register commands with Cursor IDE
- Configure logging settings
Installation
Browser Extension
- Clone this repository
- Open Chrome and navigate to chrome://extensions/
- Enable Developer Mode (toggle in the top right)
- Click "Load unpacked" and select the cloned repository folder
- The extension should now be installed and visible in your browser toolbar
Adding to Cursor Settings
- Open Cursor IDE
- Go to Settings (gear icon in the bottom left corner)
- Navigate to the "Extensions" or "MCPs" section
- Click "Add MCP"
- Enter the MCP information and click "Add"
Usage
You can use the MCP directly from Cursor IDE after adding it to your settings:
`javascript // Get console logs const logs = await mcp.getConsoleLogs();
// Take a screenshot const screenshot = await mcp.takeScreenshot();
// Get all context const context = await mcp.getAllContext(); `
Configuration
The MCP can be configured with the following options:
- Log limit: Maximum number of logs to keep
- Query limit: Maximum size of query to process
- Show request headers: Whether to include request headers in network logs
- Show response headers: Whether to include response headers in network logs
Development
To contribute to this project, follow these steps:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
Documentation
For more detailed information, see the following documentation:
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.