Skip to content

Commit 17d4fed

Browse files
committed
Fixing formatting errors
modified: docs/quickstart/server.mdx
1 parent c071714 commit 17d4fed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/quickstart/server.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ This quickstart assumes you have familiarity with:
5151
When implementing MCP servers, be careful about how you handle logging:
5252

5353
**For STDIO-based servers:** Never write to standard output (stdout). This includes:
54+
5455
- `print()` statements in Python
5556
- `console.log()` in JavaScript
5657
- `fmt.Println()` in Go
@@ -67,7 +68,7 @@ Writing to stdout will corrupt the JSON-RPC messages and break your server.
6768

6869
### Quick Examples
6970

70-
```javascript
71+
````javascript
7172
// ❌ Bad (STDIO)
7273
console.log("Server started");
7374

0 commit comments

Comments
 (0)