We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yuwencheng0212/ppt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
<!DOCTYPE html>
<html lang="en" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<meta charset="UTF-8">
<title>首页</title>
</head>
<body>
<h3> Hello, <shiro:principal/></h3>
<h3> <a href="/logout">注销登录</a> </h3>
<h3> <a shiro:hasRole="admin" href="/admin">管理员页面</a> </h3>
<h3> <a shiro:hasAnyRoles="admin, user" href="/user">普通用户页面</a> </h3>
</body>
</html>
<!--
index.html是登录成功之后的首页,
首先展示当前登录用户的用户名,然后展示一个”注销登录“链接
- 若当前登录用户具备"admin"角色,则展示一个”管理员页面“的超链接
- 若用户具备admin或user角色,则展示一个”普通用户页面“的超链接
-->