loading…
Search for a command to run...
loading…
Enables AI assistants to search and retrieve records from the Digital Guitar Archive database using full-text search and field-specific filters. It provides too
Enables AI assistants to search and retrieve records from the Digital Guitar Archive database using full-text search and field-specific filters. It provides tools for fetching detailed record information and listing historical source libraries.
This MCP (Model Context Protocol) server provides AI assistants with tools to search and retrieve records from the Digital Guitar Archive.
The server is pre-configured to connect to the Digital Guitar Archive API at https://digitalguitararchive.com/archive/api.
The server exposes three tools:
cd mcp
npm install
npm run build
Claude Desktop launches the MCP server automatically. Add the following to your configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"guitar-archive": {
"command": "node",
"args": ["/path/to/mcp/dist/mcp-server.js"]
}
}
}
Replace /path/to/mcp/ with the absolute path to your mcp folder. For example:
macOS:
{
"mcpServers": {
"guitar-archive": {
"command": "node",
"args": ["/path/to/mcp/dist/mcp-server.js"]
}
}
}
After updating the configuration, restart Claude Desktop for the changes to take effect.
To test the server manually:
npx ts-node src/mcp-server.ts
Note: When running with stdio transport, the server communicates via stdin/stdout and won't produce visible output. The server acts as a proxy to the live production API.
ISC
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"digital-guitar-archive-mcp-server": {
"command": "npx",
"args": []
}
}
}