intine-mcp-server
v1.0.2
Published
Local MCP server for Intine video summarization with x402 payment. Securely process YouTube videos with AI-powered summaries and blockchain-based payments.
Maintainers
Readme
intine-mcp-server
Local MCP (Model Context Protocol) server for Intine video summarization with x402 payment. Run AI-powered video summaries securely on your machine.
✨ Features
- 🎥 Video Summarization - Generate AI-powered summaries from YouTube videos
- 🔒 Secure & Private - Private keys stay on your machine
- 💰 x402 Payments - Blockchain-based payment integration
- 🔌 Easy Integration - Works with VSCode, Claude Desktop, and other MCP clients
- 📦 Simple Setup - One-command installation
🚀 Quick Start
Installation
# Install globally
npm install -g intine-mcp-server
# Or install in your project
npm install intine-mcp-server
# Or run directly with npx (no installation needed)
npx intine-mcp-serverConfiguration
# Create environment file
echo "PAYER_PRIVATE_KEY=your_private_key_here" > .env
# Or set environment variable directly
export PAYER_PRIVATE_KEY=your_private_key_hereVSCode Setup
Add to your .vscode/mcp.json:
{
"servers": {
"intine": {
"command": "npx",
"args": ["intine-mcp-server"],
"env": {
"PAYER_PRIVATE_KEY": "${env:PAYER_PRIVATE_KEY}"
}
}
},
"inputs": []
}Claude Desktop Setup
Add to your Claude Desktop config:
{
"mcpServers": {
"intine": {
"command": "npx",
"args": ["intine-mcp-server"],
"env": {
"PAYER_PRIVATE_KEY": "your_private_key_here"
}
}
}
}🔧 Available Tools
summarize_video
Generate a summary of a YouTube video with x402 payment.
Parameters:
url(string, required): The YouTube video URL
Example:
{
"name": "summarize_video",
"arguments": {
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}
}📋 Requirements
- Node.js >= 18.0.0
- PAYER_PRIVATE_KEY environment variable
- Ethereum wallet with base ETH for gas fees
🔗 Links
🐛 Support
For support, please contact us at [email protected]
