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
+39Lines changed: 39 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,9 @@ A Python utility package for building Model Context Protocol (MCP) servers.
26
26
-[Contributing](#contributing)
27
27
-[Related Projects](#related-projects)
28
28
-[License](#license)
29
+
-[Testing with MCP Inspector](#testing-with-mcp-inspector)
30
+
-[Installation](#installation-1)
31
+
-[Usage](#usage-1)
29
32
30
33
## Overview
31
34
@@ -226,3 +229,39 @@ Contributions are welcome! Please feel free to submit a Pull Request.
226
229
## License
227
230
228
231
MIT License
232
+
233
+
## Testing with MCP Inspector
234
+
235
+
The [MCP Inspector](https://github.com/modelcontextprotocol/inspector) is a useful tool for testing and debugging MCP servers. It provides a web interface to inspect and test MCP server endpoints.
236
+
237
+
### Installation
238
+
239
+
Install MCP Inspector using npm:
240
+
241
+
```bash
242
+
npm install -g @modelcontextprotocol/inspector
243
+
```
244
+
245
+
### Usage
246
+
247
+
1. Start your MCP server (e.g., the Flask example above)
0 commit comments