Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

sync-version.js640 B
#!/usr/bin/env node /** * Sync version between package.json and Python version file */ const fs = require('fs'); const path = require('path'); const packageJsonPath = path.join(__dirname, '..', 'package.json'); const versionPyPath = path.join(__dirname, '..', 'mcp_server_bwt', 'version.py'); // Read package.json version const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8')); const version = packageJson.version; // Update Python version file const versionPyContent = `__version__ = "${version}"\n`; fs.writeFileSync(versionPyPath, versionPyContent); console.log(`✓ Synced version ${version} to Python file`);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/isiahw1/mcp-server-bing-webmaster'

If you have feedback or need assistance with the MCP directory API, please join our Discord server