Relocate references and commands for MCP servers from ./mcps/ to ~/Projects/local/mcp_servers/ across context files, README, CLAUDE.md, config JSON, and launch scripts. This includes cd commands, tool prefixes, and prompt references to reflect the new directory structure while maintaining provider-agnostic workflows. No functional changes to MCP behavior.
15 lines
369 B
Bash
Executable File
15 lines
369 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
#
|
|
if [[ "$(uname)" == "Linux" ]]; then
|
|
PATH_PREFIX="/data/Projects"
|
|
elif [[ "$(uname)" == "Darwin" ]]; then
|
|
PATH_PREFIX="/Users/gregory.gauthier/Projects"
|
|
else
|
|
# Default fallback is Linux
|
|
PATH_PREFIX="/data/Projects"
|
|
fi
|
|
|
|
# shellcheck disable=SC2164
|
|
cd "${PATH_PREFIX}/local/mcp_servers/open_meteo_mcp"
|
|
poetry run open-meteo-mcp-stdio
|