StudentManagementMCP_Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@StudentManagementMCP_Serverlist all students"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
student_management_crud MCP server
Generated from https://github.com/priyankapsi/Student-management-using-CRUD-operations- (commit fd84c6894014d853b69d9350b2b2cb0e46dc3e87).
Setup
pip install -e .(orpip install -r requirements.txtif provided separately).Copy
.env.exampleto.envand fill in the values below, or have your deployment platform inject them as environment variables directly - nothing here contains real credentials.Run:
python server.py
Related MCP server: qldt-hanu-mcp
Required environment variables
Variable | Secret? | Purpose |
| no | Base URL of the running student_management_crud API instance |
| yes | Static bearer token |
Transport
Two transports, selected via MCP_TRANSPORT:
stdio(default) - the standard subprocess transport most MCP hosts use.streamable-http- hosts this server over HTTP/HTTPS at/mcp, so it can run as a standalone network service. Configure with:HOST(default0.0.0.0),PORT(default8000)MCP_TLS_CERTFILE/MCP_TLS_KEYFILE- set both to serve HTTPS directly; otherwise plain HTTP is served (fine behind a TLS-terminating proxy/ingress).
Example:
MCP_TRANSPORT=streamable-http PORT=8000 python server.py
Tools
register_user - Register a new application user with a username (email), password, and optional identity roles (e.g. Reader, Writer).
login - Authenticate with username and password, returning a short-lived JWT access token and a refresh token.
refresh_token - Exchange an expired JWT plus its matching refresh token for a newly issued JWT/refresh token pair.
get_all_students - List all students (requires a JWT bearer token for a user in the 'Reader' role).
get_student_by_id - Get a single student by numeric id (requires a JWT bearer token for a user in the 'Reader' role).
add_student - Create a new student record with name, optional image, and class id (requires a JWT bearer token for a user in the 'Writer' role).
update_student - Update an existing student's name, image, and class id by id (requires a JWT bearer token for a user in the 'Writer' role).
delete_student - Delete a student by id (requires a JWT bearer token for a user in the 'Reader' or 'Writer' role).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/priyankapsi/StudentManagementMCP_Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server