@rushstack/mcp-server 0.1.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/CHANGELOG.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@rushstack/mcp-server",
3
+ "entries": [
4
+ {
5
+ "version": "0.1.0",
6
+ "tag": "@rushstack/mcp-server_v0.1.0",
7
+ "date": "Thu, 17 Apr 2025 15:11:16 GMT",
8
+ "comments": {
9
+ "minor": [
10
+ {
11
+ "comment": "Init rush mcp server project"
12
+ }
13
+ ]
14
+ }
15
+ }
16
+ ]
17
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # Change Log - @rushstack/mcp-server
2
+
3
+ This log was last generated on Thu, 17 Apr 2025 15:11:16 GMT and should not be manually modified.
4
+
5
+ ## 0.1.0
6
+ Thu, 17 Apr 2025 15:11:16 GMT
7
+
8
+ ### Minor changes
9
+
10
+ - Init rush mcp server project
11
+
package/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ @rushstack/mcp-server
2
+
3
+ Copyright (c) Microsoft Corporation. All rights reserved.
4
+
5
+ MIT License
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @rushstack/mcp-server
2
+
3
+ ## Usage
4
+
5
+ ## Links
package/bin/mcp-server ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../lib/start.js');
package/lib/start.d.ts ADDED
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=start.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../src/start.ts"],"names":[],"mappings":""}
package/lib/start.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
3
+ // See LICENSE in the project root for license information.
4
+ //# sourceMappingURL=start.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"start.js","sourceRoot":"","sources":["../src/start.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n"]}
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@rushstack/mcp-server",
3
+ "version": "0.1.0",
4
+ "description": "A Model Context Protocol server implementation for Rush",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/microsoft/rushstack.git",
8
+ "directory": "apps/rush-mcp-server"
9
+ },
10
+ "engines": {
11
+ "node": ">=10.0.0"
12
+ },
13
+ "engineStrict": true,
14
+ "homepage": "https://rushstack.io",
15
+ "bin": {
16
+ "mcp-server": "./bin/mcp-server"
17
+ },
18
+ "license": "MIT",
19
+ "dependencies": {
20
+ "@rushstack/node-core-library": "5.13.0",
21
+ "@rushstack/terminal": "0.15.2",
22
+ "@rushstack/ts-command-line": "4.23.7"
23
+ },
24
+ "devDependencies": {
25
+ "typescript": "~5.8.2",
26
+ "@rushstack/heft": "0.73.1",
27
+ "local-node-rig": "1.0.0"
28
+ },
29
+ "scripts": {
30
+ "build": "heft build --clean",
31
+ "_phase:build": "heft run --only build -- --clean"
32
+ }
33
+ }