Skip to content

Commit 1c4cb30

Browse files
committed
fix: convert deployment pattern bold text to proper headings
1 parent b5cc19a commit 1c4cb30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ def calculate(a: int, b: int, operation: str) -> int:
14291429

14301430
##### Deployment Patterns
14311431

1432-
**Pattern 1: Pure Stateless (Recommended)**
1432+
###### Pattern 1: Pure Stateless (Recommended)
14331433

14341434
```python
14351435
# Best for: Serverless, auto-scaling environments
@@ -1439,7 +1439,7 @@ mcp = FastMCP("MyServer", stateless_http=True, json_response=True)
14391439
# Load balancer doesn't need session affinity
14401440
```
14411441

1442-
**Pattern 2: Stateful with Sticky Sessions**
1442+
###### Pattern 2: Stateful with Sticky Sessions
14431443

14441444
```python
14451445
# Best for: When you need notifications but have load balancing
@@ -1449,7 +1449,7 @@ mcp = FastMCP("MyServer", stateless_http=False) # Default
14491449
# ALB/NGINX can route by header value to maintain session affinity
14501450
```
14511451

1452-
**Pattern 3: Hybrid Approach**
1452+
###### Pattern 3: Hybrid Approach
14531453

14541454
```python
14551455
# Deploy both modes side-by-side

0 commit comments

Comments
 (0)