isolated-commands-mcp-server MCP Server
@MCP-Mirror
Mirror of
概要
What is isolated-commands-mcp-server?
isolated-commands-mcp-server is a TypeScript-based Model Context Protocol server for running commands locally in an isolated environment. It demonstrates core MCP concepts by providing resources, tools, and prompts built around a simple notes system, but its stated purpose is command execution in isolation.
How to use isolated-commands-mcp-server?
Install dependencies with npm install, build with npm run build, and for development use npm run watch. Add the server to Claude Desktop by editing claude_desktop_config.json with the path to the built index.js. Use the MCP Inspector for debugging by running npm run inspector.
Key features of isolated-commands-mcp-server
- Provides resources to list and access notes via
note://URIs - Each note includes title, content, and metadata
- Offers
create_notetool for creating new text notes - Includes
summarize_notesprompt for generating summaries - Uses plain text mime type for simple content access
- Built with TypeScript and standard MCP development tooling
Use cases of isolated-commands-mcp-server
- Creating and storing text notes with metadata
- Listing and retrieving notes by URI for LLM consumption
- Generating structured summaries of all stored notes
- Demonstrating MCP resource, tool, and prompt patterns
FAQ from isolated-commands-mcp-server
What runtime does isolated-commands-mcp-server require?
Node.js and npm are required to install dependencies and build the server.
How do I configure isolated-commands-mcp-server with Claude Desktop?
Add a JSON entry to the mcpServers object in Claude Desktop’s config file, specifying the command as the path to the built index.js.
How can I debug isolated-commands-mcp-server?
Use the MCP Inspector by running npm run inspector, which provides a URL for debugging tools over stdio.
What transports or authentication does isolated-commands-mcp-server use?
The server communicates over stdio, typical for MCP servers. No authentication mechanisms are mentioned in the README.
Does isolated-commands-mcp-server store notes persistently?
No – notes are stored in server state and are not persisted to disk beyond the session, as per the README’s description of storing notes in server state.