You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+90-21Lines changed: 90 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,49 @@
2
2
3
3
A command line tool that extracts Model Context Protocol (MCP) tool metadata from .NET assemblies and outputs it as JSON, Python function definitions, or DXT manifests.
4
4
5
+
## Installation
6
+
7
+
### Install as a .NET Global Tool
8
+
9
+
McpExtract is available as a .NET global tool and can be installed from NuGet:
10
+
11
+
```bash
12
+
dotnet tool install -g McpExtract.Tool
13
+
```
14
+
15
+
Once installed, you can run the tool from anywhere using:
16
+
17
+
```bash
18
+
mcp-extract --help
19
+
```
20
+
21
+
### Update to Latest Version
22
+
23
+
To update to the latest version:
24
+
25
+
```bash
26
+
dotnet tool update -g McpExtract.Tool
27
+
```
28
+
29
+
### Uninstall
30
+
31
+
To uninstall the tool:
32
+
33
+
```bash
34
+
dotnet tool uninstall -g McpExtract.Tool
35
+
```
36
+
37
+
### Local Development Installation
38
+
39
+
For local development, you can install from source:
<Description>A command line tool that extracts Model Context Protocol (MCP) tool metadata from .NET assemblies and outputs it as JSON, Python function definitions, or DXT manifests.</Description>
0 commit comments