Jeremiah Lowin commited on
Commit
869bf4b
·
1 Parent(s): 334a570

Update issue template

Browse files
Files changed (1) hide show
  1. .github/ISSUE_TEMPLATE/bug.yml +3 -1
.github/ISSUE_TEMPLATE/bug.yml CHANGED
@@ -27,8 +27,10 @@ body:
27
  [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example)
28
  demonstrating the bug.
29
 
 
 
30
  placeholder: |
31
- from fastmcp import FastMCP
32
 
33
  ...
34
  render: Python
 
27
  [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example)
28
  demonstrating the bug.
29
 
30
+ If possible, your example should be a single-file script. Instead of `.run()`-ing an MCP server, use a `Client` to directly interact with it (`async with Client(mcp) as client: ...`) and demonstrate the issue.
31
+
32
  placeholder: |
33
+ from fastmcp import FastMCP, Client
34
 
35
  ...
36
  render: Python