We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sayedpfe/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup-claude.batβ’1.1 KiB
@echo off
echo π§ Claude Desktop Configuration Helper
echo.
REM Get the current project path
set "PROJECT_PATH=%cd%"
echo Your project path: %PROJECT_PATH%
echo.
REM Check if Claude folder exists
set "CLAUDE_PATH=%APPDATA%\Claude"
echo Checking Claude folder: %CLAUDE_PATH%
if exist "%CLAUDE_PATH%" (
echo β Claude folder found!
) else (
echo β Claude folder not found. Creating it...
mkdir "%CLAUDE_PATH%"
echo β Claude folder created!
)
echo.
REM Create the config file
set "CONFIG_FILE=%CLAUDE_PATH%\claude_desktop_config.json"
echo Creating configuration file: %CONFIG_FILE%
(
echo {
echo "mcpServers": {
echo "mcp-learning-server": {
echo "command": "node",
echo "args": ["%PROJECT_PATH:\=\\%\\build\\index.js"]
echo }
echo }
echo }
) > "%CONFIG_FILE%"
echo β Configuration file created!
echo.
echo π What to do next:
echo 1. Run 'npm run build' to create build/index.js
echo 2. Restart Claude Desktop completely
echo 3. Look for the π§ tools icon
echo.
echo π Config file location: %CONFIG_FILE%
echo π Your project path: %PROJECT_PATH%
echo.
pause