lit-forge-mcp 0.1.0 → 0.1.2

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 +6 -2
  2. package/package.json +7 -4
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # lit-forge MCP server
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/lit-forge-mcp.svg)](https://www.npmjs.com/package/lit-forge-mcp)
4
+ [![license](https://img.shields.io/npm/l/lit-forge-mcp.svg)](./LICENSE)
5
+ [![node](https://img.shields.io/node/v/lit-forge-mcp.svg)](https://nodejs.org)
6
+
3
7
  [lit-forge.com](https://lit-forge.com) の開発者向けユーティリティを Model Context Protocol(MCP)経由で AI から直接呼び出せるようにする stdio サーバーです。
4
8
 
5
9
  Claude Desktop / Claude Code / Cursor など、MCP に対応した任意の AI クライアントで動作します。
@@ -55,8 +59,8 @@ claude mcp add lit-forge -- npx -y lit-forge-mcp
55
59
  ## ローカル開発
56
60
 
57
61
  ```bash
58
- git clone https://github.com/nobuoseki/lit-forge.git
59
- cd lit-forge/mcp-server
62
+ git clone https://github.com/noblabs/lit-forge-mcp.git
63
+ cd lit-forge-mcp
60
64
  npm install
61
65
  npm run build
62
66
  node dist/index.js # stdio で起動
package/package.json CHANGED
@@ -1,14 +1,17 @@
1
1
  {
2
2
  "name": "lit-forge-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "mcpName": "io.github.noblabs/lit-forge-mcp",
4
5
  "description": "MCP server exposing lit-forge.com developer utilities (JSON / regex / JWT / Base64 / URL / hash / UUID / timestamp / YAML↔JSON / cron) as callable tools.",
5
6
  "type": "module",
6
7
  "license": "MIT",
7
8
  "homepage": "https://lit-forge.com",
8
9
  "repository": {
9
10
  "type": "git",
10
- "url": "https://github.com/nobuoseki/lit-forge",
11
- "directory": "mcp-server"
11
+ "url": "git+https://github.com/noblabs/lit-forge-mcp.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/noblabs/lit-forge-mcp/issues"
12
15
  },
13
16
  "keywords": [
14
17
  "mcp",
@@ -24,7 +27,7 @@
24
27
  "cron"
25
28
  ],
26
29
  "bin": {
27
- "lit-forge-mcp": "./dist/index.js"
30
+ "lit-forge-mcp": "dist/index.js"
28
31
  },
29
32
  "files": [
30
33
  "dist",