@williamp29/project-mcp-server 1.0.0 → 1.0.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.
- package/README.md +2 -2
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Your project's MCP Server
|
|
2
2
|
|
|
3
|
-
A powerful Model Context Protocol (MCP) server that dynamically
|
|
3
|
+
A powerful Model Context Protocol (MCP) server that dynamically serves context about your project. It can explore and interact with any API defined by an OpenAPI specification.
|
|
4
4
|
|
|
5
5
|
## For LLM Agents: How to use this MCP
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@williamp29/project-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A ModelContextProtocol server to let agents discover your project, such as APIs (using OpenAPI) or other resources.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,14 +12,23 @@
|
|
|
12
12
|
"README.md"
|
|
13
13
|
],
|
|
14
14
|
"type": "module",
|
|
15
|
+
"typesVersions": {
|
|
16
|
+
"*": {
|
|
17
|
+
"api-explorer": [
|
|
18
|
+
"./dist/api-explorer/index.d.ts"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
15
22
|
"exports": {
|
|
16
23
|
".": {
|
|
17
24
|
"types": "./dist/index.d.ts",
|
|
18
|
-
"import": "./dist/index.js"
|
|
25
|
+
"import": "./dist/index.js",
|
|
26
|
+
"default": "./dist/index.js"
|
|
19
27
|
},
|
|
20
28
|
"./api-explorer": {
|
|
21
29
|
"types": "./dist/api-explorer/index.d.ts",
|
|
22
|
-
"import": "./dist/api-explorer/index.js"
|
|
30
|
+
"import": "./dist/api-explorer/index.js",
|
|
31
|
+
"default": "./dist/api-explorer/index.js"
|
|
23
32
|
}
|
|
24
33
|
},
|
|
25
34
|
"scripts": {
|