We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OpaqueGlass/syplugin-anMCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.release.py•342 B
import re
with open('CHANGELOG.md', 'r', encoding='utf-8') as f:
readme_str = f.read()
match_obj = re.search(r'(?<=### )[\s\S]*?(?=#)', readme_str, re.DOTALL)
if match_obj:
h3_title = match_obj.group(0)
with open('result.txt', 'w') as f:
f.write(h3_title)
else:
with open('result.txt', 'w') as f:
f.write("")