Skip to content

Commit 2ac30aa

Browse files
committed
chore(release): 1.2.0
1 parent 2494ef4 commit 2ac30aa

6 files changed

Lines changed: 36 additions & 33 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Model Context Protocol (MCP) is an open standard that enables AI assistants
1717

1818
## Prerequisites
1919

20-
- Node.js 18.0.0 or higher
20+
- Node.js 20.0.0 or higher
2121
- npm (or another Node package manager)
2222

2323
## Installation
@@ -45,14 +45,14 @@ npm run start:dev
4545
### Use via npx (after publishing)
4646

4747
```bash
48-
npx @jephilli-patternfly-docs/mcp
48+
npx @cdcabrera/pf-mcp
4949
```
5050

5151
Or install locally in a project and run:
5252

5353
```bash
54-
npm install @jephilli-patternfly-docs/mcp
55-
npx @jephilli-patternfly-docs/mcp
54+
npm install @cdcabrera/pf-mcp
55+
npx @cdcabrera/pf-mcp
5656
```
5757

5858
## Scripts
@@ -111,7 +111,7 @@ If you run the server with --docs-host, local paths you pass in urlList are reso
111111
Example:
112112

113113
```bash
114-
npx @jephilli-patternfly-docs/mcp --docs-host
114+
npx @cdcabrera/pf-mcp --docs-host
115115
```
116116

117117
Then, passing a local path such as react-core/6.0.0/llms.txt in urlList will load from llms-files/react-core/6.0.0/llms.txt.
@@ -127,7 +127,7 @@ Most MCP clients use a JSON configuration that tells the client how to start thi
127127
"mcpServers": {
128128
"patternfly-docs": {
129129
"command": "npx",
130-
"args": ["-y", "@jephilli-patternfly-docs/mcp@latest"],
130+
"args": ["-y", "@cdcabrera/pf-mcp@latest"],
131131
"description": "PatternFly React development rules and documentation"
132132
}
133133
}
@@ -141,7 +141,7 @@ Most MCP clients use a JSON configuration that tells the client how to start thi
141141
"mcpServers": {
142142
"patternfly-docs": {
143143
"command": "npx",
144-
"args": ["-y", "@jephilli-patternfly-docs/mcp@latest", "--docs-host"],
144+
"args": ["-y", "@cdcabrera/pf-mcp@latest", "--docs-host"],
145145
"description": "PatternFly docs (docs-host mode)"
146146
}
147147
}
@@ -247,7 +247,7 @@ npm publish
247247

248248
After publishing, users can run your MCP server with:
249249
```bash
250-
npx @jephilli-patternfly-docs/mcp
250+
npx @cdcabrera/pf-mcp
251251
```
252252

253253
## Contributing

mcp-config-example.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"mcpServers": {
33
"patternfly-docs": {
44
"command": "npx",
5-
"args": ["@jephilli-patternfly-docs/mcp"],
5+
"args": ["@cdcabrera/pf-mcp"],
66
"description": "PatternFly React development rules and documentation"
77
}
88
}
9-
}
9+
}

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@jephilli-patternfly-docs/mcp",
3-
"version": "1.1.0",
2+
"name": "@cdcabrera/pf-mcp",
3+
"version": "1.2.0",
44
"description": "PatternFly documentation MCP server built with Node.js and TypeScript",
55
"main": "dist/index.js",
66
"type": "module",
@@ -45,6 +45,9 @@
4545
"react"
4646
],
4747
"author": "Jeff Phillips",
48+
"maintainers": [
49+
"cdcabrera"
50+
],
4851
"license": "MIT",
4952
"dependencies": {
5053
"@modelcontextprotocol/sdk": "1.19.1",
@@ -66,15 +69,15 @@
6669
"typescript-eslint": "^8.46.1"
6770
},
6871
"engines": {
69-
"node": ">=18.0.0"
72+
"node": ">=20.0.0"
7073
},
7174
"repository": {
7275
"type": "git",
73-
"url": "git+https://github.com/jeff-phillips-18/patternfly-mcp.git"
76+
"url": "git+https://github.com/cdcabrera/patternfly-mcp.git"
7477
},
7578
"types": "./dist/index.d.ts",
7679
"bugs": {
77-
"url": "https://github.com/jeff-phillips-18/patternfly-mcp/issues"
80+
"url": "git+https://github.com/cdcabrera/patternfly-mcp/issues"
7881
},
79-
"homepage": "https://github.com/jeff-phillips-18/patternfly-mcp#readme"
82+
"homepage": "git+https://github.com/cdcabrera/patternfly-mcp#readme"
8083
}

src/__tests__/__snapshots__/options.test.ts.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ exports[`freezeOptions should return frozen options with consistent properties:
66
"docsHost": true,
77
"docsPath": "/documentation",
88
"llmsFilesPath": "/llms-files",
9-
"name": "@jephilli-patternfly-docs/mcp",
9+
"name": "@cdcabrera/pf-mcp",
1010
"pfExternal": "https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content",
1111
"pfExternalAccessibility": "https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content/accessibility",
1212
"pfExternalCharts": "https://raw.githubusercontent.com/patternfly/patternfly-react/refs/heads/main/packages/react-charts/src",
@@ -46,7 +46,7 @@ exports[`freezeOptions should return frozen options with consistent properties:
4646
},
4747
},
4848
"urlRegex": /\\^\\(https\\?:\\)\\\\/\\\\//i,
49-
"version": "1.1.0",
49+
"version": "1.2.0",
5050
}
5151
`;
5252

@@ -61,7 +61,7 @@ exports[`options should return specific properties 1`] = `
6161
"contextPath": "/",
6262
"docsPath": "/documentation",
6363
"llmsFilesPath": "/llms-files",
64-
"name": "@jephilli-patternfly-docs/mcp",
64+
"name": "@cdcabrera/pf-mcp",
6565
"pfExternal": "https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content",
6666
"pfExternalAccessibility": "https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content/accessibility",
6767
"pfExternalCharts": "https://raw.githubusercontent.com/patternfly/patternfly-react/refs/heads/main/packages/react-charts/src",
@@ -101,7 +101,7 @@ exports[`options should return specific properties 1`] = `
101101
},
102102
},
103103
"urlRegex": /\\^\\(https\\?:\\)\\\\/\\\\//i,
104-
"version": "1.1.0",
104+
"version": "1.2.0",
105105
},
106106
"PF_EXTERNAL": "https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content",
107107
"PF_EXTERNAL_ACCESSIBILITY": "https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content/accessibility",

src/__tests__/__snapshots__/server.test.ts.snap

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ exports[`runServer should attempt to run server, create transport, connect, and
1111
"mcpServer": [
1212
[
1313
{
14-
"name": "@jephilli-patternfly-docs/mcp",
15-
"version": "1.1.0",
14+
"name": "@cdcabrera/pf-mcp",
15+
"version": "1.2.0",
1616
},
1717
{
1818
"capabilities": {
@@ -40,8 +40,8 @@ exports[`runServer should attempt to run server, register a tool: console 1`] =
4040
"mcpServer": [
4141
[
4242
{
43-
"name": "@jephilli-patternfly-docs/mcp",
44-
"version": "1.1.0",
43+
"name": "@cdcabrera/pf-mcp",
44+
"version": "1.2.0",
4545
},
4646
{
4747
"capabilities": {
@@ -81,8 +81,8 @@ exports[`runServer should attempt to run server, register multiple tools: consol
8181
"mcpServer": [
8282
[
8383
{
84-
"name": "@jephilli-patternfly-docs/mcp",
85-
"version": "1.1.0",
84+
"name": "@cdcabrera/pf-mcp",
85+
"version": "1.2.0",
8686
},
8787
{
8888
"capabilities": {
@@ -155,8 +155,8 @@ exports[`runServer should attempt to run server, use default tools: console 1`]
155155
"mcpServer": [
156156
[
157157
{
158-
"name": "@jephilli-patternfly-docs/mcp",
159-
"version": "1.1.0",
158+
"name": "@cdcabrera/pf-mcp",
159+
"version": "1.2.0",
160160
},
161161
{
162162
"capabilities": {

0 commit comments

Comments
 (0)