@caseywebb/elm-package-mcp-server 0.3.0 → 0.4.0

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.
package/README.md CHANGED
@@ -24,7 +24,7 @@ An MCP (Model Context Protocol) server that provides tools for looking up Elm pa
24
24
  The easiest way to use this MCP server is via npx (macOS only):
25
25
 
26
26
  ```bash
27
- npx @caseywebb/elm-package-mcp-server --mcp
27
+ npx @caseywebb/elm-package-mcp-server
28
28
  ```
29
29
 
30
30
  To configure with Claude Desktop:
@@ -34,7 +34,7 @@ To configure with Claude Desktop:
34
34
  "mcpServers": {
35
35
  "elm-package": {
36
36
  "command": "npx",
37
- "args": ["@caseywebb/elm-package-mcp-server", "--mcp"]
37
+ "args": ["@caseywebb/elm-package-mcp-server"]
38
38
  }
39
39
  }
40
40
  }
@@ -46,7 +46,7 @@ To configure with Zed:
46
46
  {
47
47
  "elm-package": {
48
48
  "command": "npx",
49
- "args": ["@caseywebb/elm-package-mcp-server", "--mcp"],
49
+ "args": ["@caseywebb/elm-package-mcp-server"],
50
50
  "env": {}
51
51
  }
52
52
  }
@@ -107,7 +107,7 @@ To use this MCP server with Claude Desktop, add the following to your Claude Des
107
107
  "mcpServers": {
108
108
  "elm-package": {
109
109
  "command": "/path/to/elm-package-mcp-server",
110
- "args": ["--mcp"]
110
+ "args": []
111
111
  }
112
112
  }
113
113
  }
@@ -125,7 +125,7 @@ Replace `/path/to/elm-package-mcp-server` with the actual path to your built bin
125
125
  {
126
126
  "elm-package": {
127
127
  "command": "/path/to/elm-package-mcp-server",
128
- "args": ["--mcp"],
128
+ "args": [],
129
129
  "env": {}
130
130
  }
131
131
  }
@@ -298,7 +298,8 @@ Compare two Elm packages to help choose the best one for a specific use case.
298
298
 
299
299
  ## CLI Options
300
300
 
301
- - `--mcp`: Run as an MCP server for Elm package documentation
301
+ The server runs in MCP server mode by default. Use the following options to inspect the server's capabilities:
302
+
302
303
  - `--tools`: Display available Elm package tools
303
304
  - `--resources`: Display available resources
304
305
  - `--prompts`: Display available prompts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@caseywebb/elm-package-mcp-server",
3
3
  "private": false,
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "description": "Model Context Protocol (MCP) server for Elm language package documentation. Provides tools to list Elm packages from elm.json and fetch README/API docs from package.elm-lang.org",
6
6
  "bin": {
7
7
  "elm-package-mcp-server": "./bin/cli.js"