Skip to content

Commit 37123bc

Browse files
committed
chore: update deps
1 parent b12d39a commit 37123bc

File tree

4 files changed

+271
-129
lines changed

4 files changed

+271
-129
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ wheels/
1111

1212
# Vscode
1313
.vscode/
14+
15+
**/.DS_Store
16+

src/config.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33

44

55
class Settings(BaseSettings):
6-
host: str = Field(default="127.0.0.1", description="Host to bind the server to")
7-
port: int = Field(default=8000, description="Port to bind the server to")
8-
96
enable_camera: bool = Field(default=True, description="Enable camera functionality")
107
enable_printer: bool = Field(
118
default=True, description="Enable printer functionality"

src/server.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ def create_app(settings: Settings) -> FastMCP:
88
app = FastMCP(
99
name="MCP Peripherals",
1010
instructions="A device server that provides access to various computer peripherals including camera, printer, audio and screen. Use the available tools to interact with connected hardware components.",
11-
settings=settings,
1211
)
1312

1413
if settings.enable_camera:

0 commit comments

Comments
 (0)