πŸš€ Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more β†’
Sign In

@dean0x/showme

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dean0x/showme - npm Package Compare versions

Comparing version
0.1.5
to
0.1.6
+2
-2
dist/index.js

@@ -60,3 +60,3 @@ #!/usr/bin/env node

name: 'ShowFile',
description: 'Open one or multiple files in VS Code with syntax highlighting and optional line highlighting',
description: 'Opens file(s) in VS Code. No summary needed - user will see the file directly',
inputSchema: {

@@ -90,3 +90,3 @@ type: 'object',

name: 'ShowDiff',
description: 'Open git diff in VS Code with rich visualization and side-by-side comparison',
description: 'Opens git diff in VS Code. No summary needed - user will see changes directly',
inputSchema: {

@@ -93,0 +93,0 @@ type: 'object',

{
"name": "@dean0x/showme",
"version": "0.1.5",
"version": "0.1.6",
"description": "MCP server providing ShowFile and ShowDiff tools for VS Code integration with syntax highlighting",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

# ShowMe MCP Server
A Model Context Protocol (MCP) server that enables coding agents to open files and display git diffs directly in VS Code with syntax highlighting. Provides two MCP tools: `ShowFile` for opening files and `ShowDiff` for visualizing git differences.
A Model Context Protocol (MCP) server that enables coding agents to open files and git diffs directly in VS Code. Provides two MCP tools that require no summary - the user sees the results directly in their editor.

@@ -30,4 +30,4 @@ ## Why ShowMe?

|------|---------|---------|
| `ShowFile` | Open files in VS Code | `ShowFile({ path: "README.md" })` |
| `ShowDiff` | Display git diffs | `ShowDiff({ base: "main" })` |
| `ShowFile` | Opens file(s) in VS Code | `ShowFile({ path: "README.md" })` |
| `ShowDiff` | Opens git diff in VS Code | `ShowDiff({ base: "main" })` |

@@ -34,0 +34,0 @@ ## Installation