MCP Catalogs
Home

mcp-server

by carsten-l·2·Score 26

An MCP server that converts text questions about music festivals to database queries and returns plain text responses.

databaseai-llmother
0
Forks
0
Open issues
10 mo ago
Last commit
2d ago
Indexed

Overview

This MCP server processes plain text questions about bands and stages at an imaginary music festival. It converts natural language questions into database queries, executes those queries, and transforms the results back into plain text responses. The server demonstrates the MCP protocol's capability to bridge natural language interaction with structured data access.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Answering questions about music festival schedules and band performances
you:Converting natural language queries to database operations
you:Demonstrating MCP's tool calling capabilities for data access
you:What type of database does this server connect to?
you:Can this server be customized for other domains?

When to choose this

Developers experimenting with MCP protocol and text-to-database query conversion for proof-of-concept implementations.

When NOT to choose this

Production environments need a more mature, documented solution with proper error handling and support.

Tools this server exposes

1 tool extracted from the README
  • query_music_festival

    Queries the music festival database about bands and stages.

Note: Tool name inferred from the description of functionality in the README. No explicit tool section was found, but the README describes a tool that converts questions to database queries about a music festival's bands and stages.

Comparable tools

postgrest-mcpsqlite-mcpsupabase-mcp

Installation

npm install

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "music-festival": {
      "command": "node",
      "args": ["path/to/mcp-server.js"]
    }
  }
}

FAQ

What type of database does this server connect to?
The README doesn't specify the database type, only that it converts questions to database queries.
Can this server be customized for other domains?
The code structure suggests it could be adapted for other domains by changing the data model and query logic.

Compare mcp-server with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.