Skip to content

Commit 5efcf59

Browse files
authored
Merge pull request #25 from rollbar/release-0.1.0
Update package.json for publish
2 parents 0ba9203 + 7ad4da7 commit 5efcf59

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A Model Context Protocl (MCP) server for [Rollbar](https://rollbar.com).
44

55
> [!NOTE]
6-
> This software is pre-release, alpha quality, and under active development.
6+
> This software is alpha quality and under active development.
77
88
## Features
99

@@ -27,7 +27,7 @@ This MCP server implementes the `stdio` server type, which means your AI tool (e
2727

2828
## How to Use
2929

30-
Tested with node 22 (`nvm use 22`).
30+
Tested with node 18, 20, and 22 (`nvm use 22`).
3131

3232
Install and build:
3333

package.json

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
2-
"name": "rollbar-mcp-server",
3-
"version": "0.0.1",
2+
"name": "@rollbar/mcp-server",
3+
"version": "0.1.0",
44
"description": "Model Context Protocol server for Rollbar",
5-
"main": "index.js",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/rollbar/rollbar-mcp-server.git"
8+
},
9+
"main": "build/index.js",
610
"type": "module",
711
"bin": {
812
"rollbar-mcp-server": "./build/index.js"
@@ -15,14 +19,26 @@
1519
"format:write": "prettier --write src",
1620
"test": "vitest run",
1721
"test:watch": "vitest",
18-
"test:coverage": "vitest run --coverage"
22+
"test:coverage": "vitest run --coverage",
23+
"prepublishOnly": "npm run build && npm test"
1924
},
2025
"files": [
21-
"build"
26+
"build",
27+
"src",
28+
"README.md",
29+
"LICENSE"
30+
],
31+
"keywords": [
32+
"rollbar",
33+
"mcp",
34+
"error-monitoring",
35+
"rollbar-mcp-server"
2236
],
23-
"keywords": [],
24-
"author": "",
37+
"author": "Rollbar, Inc.",
2538
"license": "MIT",
39+
"engines": {
40+
"node": ">=18"
41+
},
2642
"dependencies": {
2743
"@modelcontextprotocol/sdk": "^1.10.1",
2844
"dotenv": "^17.2.1",

0 commit comments

Comments
 (0)