hasolidit-mcp 0.0.1 → 0.0.3

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.
@@ -76,5 +76,3 @@ jobs:
76
76
  run: |
77
77
  npm ci
78
78
  npm publish --provenance --access public
79
- env:
80
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,9 +1,16 @@
1
1
  {
2
2
  "name": "hasolidit-mcp",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "author": "Daniel Golub",
5
5
  "license": "CC-BY-NC-4.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/danielgolub/mcp-hasolidit"
9
+ },
6
10
  "type": "module",
11
+ "bin": {
12
+ "hasolidit-mcp": "src/index.ts"
13
+ },
7
14
  "scripts": {
8
15
  "start": "node src/index.ts",
9
16
  "lint": "eslint src/ tests/",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
3
4
  import { z } from "zod";