by marimo-team · MCP Server · ★ 78
Last updated: · Indexed by AgentSkillsHub · Auto-synced every 8h
codemirror-mcp A CodeMirror extension that implements the Model Context Protocol (MCP) for resource mentions and prompt commands. Features Resource Completion: Autocomplete for mentions Resource Decorations: Visual styling for mentions with click handling Prompt Completion: Autocomplete for commands Theme Support: Customizable styling Installation Peer Dependencies This module requires the following peer dependencies: Usage ts import { WebSocketClientTransport } from "@modelcontextprotocol/sdk/client/websocket.js"; import { mcpExtension, extractResources } from '@marimo-team/codemirror-mcp'; import { EditorView } from '@codemirror/view'; const transport = new WebSocketClientTransport(new URL('ws://localhost:8080')); const view = new EditorView({ extensions: [ // ... other extensions mcpExtension({ // Required options transport: transport, // Optional options logger: console, clientOptions: { name: 'your-client', version: '1.0.0' }, onResourceClick: (resource) = { // Open resource // e.g. open in a tab, etc. }, }), // Handle submit keymap.of([ {
| Stars | 78 |
| Forks | 4 |
| Language | TypeScript |
| Category | MCP Server |
| License | Apache-2.0 |
| Quality Score | 73.8896913410007/100 |
| Last Updated | 2026-07-02 |
| Created | 2025-01-09 |
| Platforms | mcp, node |
| Est. Tokens | ~9k |
These tools work well together with codemirror-mcp for enhanced workflows:
Explore other popular mcp server tools:
codemirror-mcp is CodeMirror extension to hook up a Model Context Provider (MCP). It is categorized as a MCP Server with 78 GitHub stars.
codemirror-mcp is primarily written in TypeScript. It covers topics such as codemirror, codemirror-extension, mcp.
You can find installation instructions and usage details in the codemirror-mcp GitHub repository at github.com/marimo-team/codemirror-mcp. The project has 78 stars and 4 forks, indicating an active community.
codemirror-mcp is released under the Apache-2.0 license, making it free to use and modify according to the license terms.