
mcp rp demo
展示如何使用 SvelteKit v5 与 Model Context Protocol (MCP) 集成的反向代理示例项目。
Repository Info
About This Server
展示如何使用 SvelteKit v5 与 Model Context Protocol (MCP) 集成的反向代理示例项目。
Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.
Documentation
MCP Reverse Proxy Demo
A SvelteKit v5 application that demonstrates integrating with the Model Context Protocol (MCP) using reverse proxy functionality.
Technologies Used
- SvelteKit v5 - Modern web framework with server and client rendering capabilities
- TypeScript - Type-safe JavaScript
- TailwindCSS - Utility-first CSS framework
- Supabase - Open source Firebase alternative for database and authentication
- Docker - For containerizing MCP servers and Supabase
Project Setup
Prerequisites
- Node.js v18+ and npm/pnpm/yarn
- Docker and Docker Compose
- Git
Installation
- Clone the repository:
git clone git@github.com:dmvt/mcp-rp-demo.git
cd mcp-rp-demo
- Install dependencies:
npm install
- Start local Supabase using Docker:
# Start the PostgreSQL container with Supabase schema
docker-compose up -d
- Environment setup:
# Create .env file from example
cp .env.example .env
# For local development with Docker, use these values in .env:
# VITE_SUPABASE_URL=http://localhost:8000
# VITE_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImRlbW8iLCJyb2xlIjoiYW5vbiIsImlhdCI6MTYxMzA5ODU0MCwiZXhwIjoxOTI4Njc0NTQwfQ.magsCMsSnNXfoUuBl8XQQrugR-zBXRfXBpEBklJ8-Fs
Development
First, make sure your PostgreSQL container is running:
docker-compose ps
# If it's not running, start it with:
docker-compose up -d
Then, start the development server:
npm run dev
# Or open in browser automatically
npm run dev -- --open
Production Build
Build for production:
npm run build
Preview the production build:
npm run preview
Adding New Features
Tailwind Utilities
To add custom Tailwind utilities, edit tailwind.config.cjs in the project root.
Example:
// tailwind.config.cjs
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
'custom-blue': '#1a73e8'
}
}
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')]
};
Supabase Tables
This project uses a PostgreSQL database running in a Docker container as a replacement for Supabase. To add new tables:
- Create a new SQL migration file in
supabase/db/init/directory - Number it sequentially (e.g.,
02-new-table.sql) - Define your table structure and any seed data
- Restart the Docker container to apply changes
Example SQL migration file (supabase/db/init/02-new-table.sql):
-- Create a new table
CREATE TABLE IF NOT EXISTS public.my_new_table (
id SERIAL PRIMARY KEY,
title VARCHAR(255) NOT NULL,
content TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
-- Insert some seed data
INSERT INTO public.my_new_table (title, content) VALUES
('First Item', 'This is the first item in my new table'),
('Second Item', 'This is the second item in my new table');
Then, in your SvelteKit code:
// src/routes/api/my-new-table/+server.ts
import { json } from '@sveltejs/kit';
import { supabase } from '$lib/supabaseClient';
import type { RequestHandler } from './$types';
export const GET: RequestHandler = async () => {
const { data, error } = await supabase.from('my_new_table').select('*');
if (error) {
return json({ error: error.message }, { status: 500 });
}
return json(data);
};
MCP Integration
This project is designed to work with Model Context Protocol (MCP) servers running in Docker. Documentation for setting up and interacting with MCP servers will be added in future updates.
License
ISC License
Quick Start
Clone the repository
git clone https://github.com/dmvt/mcp-rp-demoInstall dependencies
cd mcp-rp-demo
npm installFollow the documentation
Check the repository's README.md file for specific installation and usage instructions.
Repository Details
Recommended MCP Servers
Discord MCP
Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.
Knit MCP
Connect AI agents to 200+ SaaS applications and automate workflows.
Apify MCP Server
Deploy and interact with Apify actors for web scraping and data extraction.
BrowserStack MCP
BrowserStack MCP Server for automated testing across multiple browsers.
Zapier MCP
A Zapier server that provides automation capabilities for various apps.