Skip to main content
Glama
priyankapsi

StudentManagementMCP_Server

by priyankapsi

student_management_crud MCP server

Generated from https://github.com/priyankapsi/Student-management-using-CRUD-operations- (commit fd84c6894014d853b69d9350b2b2cb0e46dc3e87).

Setup

  1. pip install -e . (or pip install -r requirements.txt if provided separately).

  2. Copy .env.example to .env and fill in the values below, or have your deployment platform inject them as environment variables directly - nothing here contains real credentials.

  3. Run: python server.py

Related MCP server: qldt-hanu-mcp

Required environment variables

Variable

Secret?

Purpose

STUDENT_MANAGEMENT_CRUD_BASE_URL

no

Base URL of the running student_management_crud API instance

STUDENT_MANAGEMENT_CRUD_BEARER_TOKEN

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 (default 0.0.0.0), PORT (default 8000)

    • 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).

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

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