Skip to main content
Glama

MCP Playground

Requirements

  • Python 3.13

  • uv package manager

  • SQLite3

Related MCP server: DB MCP (HR CSV → SQLite)

Installation

  1. Clone the repository

    git clone <repository-url>
    cd mcp_playground
  2. Install dependencies with uv

    uv sync
  3. Setup the SQLite database

    1. Create a new SQLite database file using the provided schema.

    cd db
    sqlite3 database.db < schema.sql
    1. Insert dummy data into the database.

    sqlite3 database.db < insert_data.sql
  4. Start the venv (if you want to start the server manually)

    source .venv/bin/activate

Usage

Starting the server

The server currently uses IO for communication. It is not meant to be started manually, instead it should be accessed through an MCP client.

Implemented Functions

The following functions are implemented in the server:

  1. db_schema (resource)

    • Returns the database schema by reading the schema.sql file.

  2. get_users (tool)

    • Fetches a list of all user names from the users table in the database.

  3. get_all_employee_profiles (tool)

    • Retrieves all employee profiles

  4. send_email (tool)

    • Sends an email using mailtrap.

    • Requires API-key in .env file:

      MAILTRAP_API_TOKEN=your_mailtrap_api_key
  5. propose_team_for_project (prompt)

    • Given a project description and team size, proposes a team of employees best suited for the project based on their skills and experience.

Integration with Claude Desktop as the MCP client

Add the following configuration to your MCP client (e.g., Claude Desktop):

  • Settings → Developer → Edit config → claude_desktop_config.json

  • mcpServers: The server name, in this case not-solita-corp.

  • command: The ABSOLUTE path to the uv executable on your system.

  • args: The arguments to start the MCP server, including the ABSOLUTE path to the mcp_playground directory.

  • Note: Windows paths use backslashes (\).

{
  "mcpServers": {
    "mcp_demo": {
      "command": "/path/to/user/.local/bin/uv",
      "args": [
        "--directory",
        "/path/to/user/mcp_playground",
        "run",
        "server.py"
      ]
    }
  }
}
F
license - not found
D
quality
D
maintenance

Maintenance

0Releases (12mo)

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    An open-source MCP server that imports HR CSV data into an in-memory SQLite database for structured querying and metadata retrieval. It enables users to perform read-only SQL queries and structured searches on employee data through natural language.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    This MCP server imports HR CSV data into an in-memory SQLite database to enable structured querying and metadata retrieval. It provides tools for executing read-only SQL queries and searching employee records through a standardized JSON-RPC interface.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server providing natural-language tools for managing and querying an employee database, including user CRUD, search, and statistics.
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    An employee-analytics MCP server backed by SQLite that provides hand-written SQL queries for common analytics tasks like salary ranking and department statistics. It self-seeds sample data, enabling immediate testing of GROUP BY, window functions, NULL handling, and subqueries.

View all related MCP servers

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/JaanLavaerts/mcp_playground'

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