@gesslar/lpc-mcp 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ This MCP (Model Context Protocol) server wraps the [jlchmura/lpc-language-server
6
6
 
7
7
  ## What This Enables
8
8
 
9
- **AI assistants can now:**
9
+ **AI assistants can now:**
10
10
 
11
11
  - Understand your LPC code structure through the language server
12
12
  - Get real documentation from hover information
@@ -19,12 +19,12 @@ All through conversation, powered by actual code intelligence instead of pattern
19
19
 
20
20
  ## Features
21
21
 
22
- - 🔍 **`lpc_hover`**: Get documentation/hover information for symbols
23
- - 🎯 **`lpc_definition`**: Jump to definition of symbols
24
- - 🔗 **`lpc_references`**: Find all references to a symbol
25
- - 🐛 **`lpc_diagnostics`**: Get real-time errors, warnings, and hints from the language server
26
- - 📁 **Workspace-aware**: Reads your `lpc-config.json` for proper symbol resolution
27
- - 🚀 **Fast**: Direct JSON-RPC communication with the language server
22
+ - **`lpc_hover`**: Get documentation/hover information for symbols
23
+ - **`lpc_definition`**: Jump to definition of symbols
24
+ - **`lpc_references`**: Find all references to a symbol
25
+ - **`lpc_diagnostics`**: Get real-time errors, warnings, and hints from the language server
26
+ - **Workspace-aware**: Reads your `lpc-config.json` for proper symbol resolution
27
+ - **Fast**: Direct JSON-RPC communication with the language server
28
28
 
29
29
  ## Prerequisites
30
30
 
@@ -222,7 +222,7 @@ node index.js
222
222
 
223
223
  The server should output:
224
224
 
225
- ```
225
+ ```text
226
226
  Starting LPC Language Server...
227
227
  Initializing LSP...
228
228
  LPC Language Server started successfully
@@ -277,7 +277,7 @@ ls ~/.vscode/extensions/ | grep jlchmura.lpc
277
277
 
278
278
  ## How It Works
279
279
 
280
- ```
280
+ ```text
281
281
  AI Assistant
282
282
  ↓ (natural language)
283
283
  MCP Protocol
@@ -313,7 +313,7 @@ PRs welcome! This is a proof-of-concept that can be extended with more LSP featu
313
313
 
314
314
  ## Credits
315
315
 
316
- - **John (jlchmura)** - The INCOMPARABLY SKILLED MASTER PROGRAMMER whose [LPC language server](https://github.com/jlchmura/lpc-language-server) rescued LPC development from 1995. Without his greatness, kindness, and all-around hunk demeanour, we would still be `grep`-ing through mudlibs like cavemen. This cos theMCP server is merely a humble wrapper around his genius. 🙇
316
+ - **John (jlchmura)** - The INCOMPARABLY SKILLED MASTER PROGRAMMER whose [LPC language server](https://github.com/jlchmura/lpc-language-server) rescued LPC development from 1995. Without his greatness, kindness, and all-around hunk demeanour, we would still be `grep`-ing through mudlibs like cavemen. This MCP server is merely a humble wrapper around his genius.
317
317
  - [Model Context Protocol](https://modelcontextprotocol.io/) - The protocol making this possible
318
318
  - Built in an hour of inspired hacking in 2025
319
319
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gesslar/lpc-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server for LPC language server",
5
5
  "main": "index.js",
6
6
  "type": "module",