Update schema path (#1595)

This commit is contained in:
Jeremiah Lowin 2025-08-23 09:47:58 -04:00 committed by GitHub
commit b34519c356
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 654 additions and 138 deletions

View file

@ -1,9 +1,9 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "src/atproto_mcp/server.py",
"environment": {
"dependencies": [
"atproto_mcp@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/atproto_mcp"
]
}
}
}

View file

@ -1,5 +1,5 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "src/server.py:app",
"environment": {
"python": "3.12",
@ -17,4 +17,4 @@
"FEATURE_FLAGS": "${FEATURE_FLAGS}"
}
}
}
}

View file

@ -1,15 +1,12 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": {
"file": "server.py",
"object": "mcp"
},
"environment": {
"python": "3.12",
"dependencies": [
"requests>=2.31.0",
"httpx"
],
"dependencies": ["requests>=2.31.0", "httpx"],
"requirements": null,
"project": null,
"editable": null
@ -27,4 +24,4 @@
"cwd": null,
"args": null
}
}
}

View file

@ -1,15 +1,12 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "server.py",
"environment": {
"python": "3.11",
"dependencies": [
"pyautogui",
"Pillow"
]
"dependencies": ["pyautogui", "Pillow"]
},
"deployment": {
"transport": "stdio",
"log_level": "INFO"
}
}
}

View file

@ -1,12 +1,7 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "memory.py",
"environment": {
"dependencies": [
"pydantic-ai-slim[openai]",
"asyncpg",
"numpy",
"pgvector"
]
"dependencies": ["pydantic-ai-slim[openai]", "asyncpg", "numpy", "pgvector"]
}
}
}

View file

@ -1,4 +1,4 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "mount_example.py"
}
}

View file

@ -1,7 +1,7 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "screenshot.py",
"environment": {
"dependencies": ["pyautogui", "Pillow"]
}
}
}

View file

@ -1,9 +1,9 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "src/smart_home/hub.py",
"environment": {
"dependencies": [
"smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home"
]
}
}
}

View file

@ -1,9 +1,9 @@
{
"$schema": "https://gofastmcp.com/schemas/fastmcp_config/v1.json",
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"entrypoint": "src/smart_home/lights/server.py",
"environment": {
"dependencies": [
"smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home"
]
}
}
}