Skip to content

Commit b031c7a

Browse files
committed
refactor: remove unused HOST and PORT config variables
- Remove HOST and PORT settings from config.py (lines 18-19) - These variables are not used anywhere in the codebase - MCP server communicates via stdio, not network ports - Reduces configuration complexity and removes dead code - All tests still pass (14/14) with 70% coverage maintained
1 parent 13a8f8a commit b031c7a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/pia_mcp_server/config.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ class Settings(BaseSettings):
1515
MAX_RESULTS: int = 50
1616
BATCH_SIZE: int = 20
1717
REQUEST_TIMEOUT: int = 60
18-
HOST: str = "0.0.0.0"
19-
PORT: int = 8000
2018

2119
# PIA Server Configuration
2220
PIA_API_URL: str = "https://mcp.programintegrity.org/"

0 commit comments

Comments
 (0)