Initial commit: HPR Knowledge Base MCP Server

- MCP server with stdio transport for local use
- Search episodes, transcripts, hosts, and series
- 4,511 episodes with metadata and transcripts
- Data loader with in-memory JSON storage

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Lee Hanken
2025-10-26 10:54:13 +00:00
commit 7c8efd2228
4494 changed files with 1705541 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "hpr-knowledge-base-mcp",
"version": "1.0.0",
"description": "MCP server for Hacker Public Radio knowledge base",
"type": "module",
"main": "index.js",
"bin": {
"hpr-mcp": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["mcp", "hacker-public-radio", "hpr", "podcast", "knowledge-base"],
"author": "",
"license": "CC-BY-SA",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2"
}
}