Skip to main content
Glama

EdgeOne Pages MCP

Official
document.addEventListener('DOMContentLoaded', function () { // Smooth scroll for navigation links document.querySelectorAll('a[href^="#"]').forEach((anchor) => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start', }); } }); }); // Header scroll effect let lastScroll = 0; const header = document.querySelector('.header'); window.addEventListener('scroll', () => { const currentScroll = window.pageYOffset; if (currentScroll <= 0) { header.style.boxShadow = 'none'; } else { header.style.boxShadow = '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)'; } lastScroll = currentScroll; }); // Button hover animation const buttons = document.querySelectorAll('.btn-primary'); buttons.forEach((button) => { button.addEventListener('mouseover', () => { button.style.transform = 'scale(1.05)'; }); button.addEventListener('mouseout', () => { button.style.transform = 'scale(1)'; }); }); });

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/TencentEdgeOne/edgeone-pages-mcp'

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