We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anotherik/ThreatByte-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{% extends "base.html" %}
{% block content %}
<h2>Create account</h2>
<form method="post" class="card">
{% if error %}<p class="error">{{ error }}</p>{% endif %}
<label>Username
<input type="text" name="username" required />
</label>
<label>Email
<input type="email" name="email" required />
</label>
<label>Password
<input type="password" name="password" required />
</label>
<label>Confirm Password
<input type="password" name="confirm" required />
</label>
<button class="btn" type="submit">Sign Up</button>
</form>
{% endblock %}