Skip to main content

Live Examples

Try StaticMCP with real deployments. Each example demonstrates different use cases and can be tested immediately with any MCP-compatible AI client.

๐Ÿš€ Interactive Examplesโ€‹

Personal Resumeโ€‹

Try It Now: Ask Claude about John Doe

Add this to your Claude Desktop Config

{
"mcpServers": {
"resume-mcp": {
"command": "npx",
"args": [
"staticmcp-bridge",
"https://staticmcp.com/mcp"
]
}
}
}

Generated with: resume_smg tool from personal JSON data

StaticMCP Documentation (Self-Hosting)โ€‹

Try It Now: Ask Claude about StaticMCP

{
"mcpServers": {
"resume-mcp": {
"command": "npx",
"args": [
"staticmcp-bridge",
"https://staticmcp.github.io/resume_smg/"
]
}
}
}

Original Site: This very documentation site
Generated with: docusaurus-smg

Example Questions to Try:

  • "How do I get started with StaticMCP?"
  • "What's the difference between StaticMCP and traditional MCP?"
  • "How do I deploy StaticMCP files?"
  • "What tools are available for generating StaticMCP?"

๐Ÿ› ๏ธ How These Examples Were Builtโ€‹

Personal Resumeโ€‹

# 1. Create resume data (JSON format)
{
"name": "John Doe",
"experience": [...],
"skills": [...],
"projects": [...]
}

# 2. Generate StaticMCP
resume_smg ./resume.json --output ./smcp

# 3. Deploy to personal website
cp -r ./smcp/* /path/to/binhong.me/smcp/

# 4. Ready to use with hosted bridge
# URL: https://bridge.staticmcp.com/sse?url=https://binhong.me/smcp

Documentation Examplesโ€‹

# 1. Clone the documentation site
git clone https://github.com/facebook/docusaurus.git
cd docusaurus/website

# 2. Generate StaticMCP
npm install -g docusaurus-smg
docusaurus-smg . --output ./staticmcp-output

# 3. Deploy to static hosting
netlify deploy --dir ./staticmcp-output
# or
vercel --prod ./staticmcp-output

# 4. Connect via hosted bridge
# URL: https://bridge.staticmcp.com/sse?url=YOUR_DEPLOYED_URL

๐Ÿ“Š Performance Comparisonโ€‹

Testing with the examples above on global infrastructure:

MetricTraditional MCP ServerStaticMCP
Average Response Time200-500ms20-50ms
Global P95 Response500-2000ms< 100ms
Cold Start1-3 seconds0ms (no servers)
Monthly Cost$20-100$0
Setup Time2-8 hours5 minutes

๐ŸŽฏ Try Building Your Ownโ€‹

Option 1: Personal Resume/Portfolioโ€‹

# Install the resume generator
npm install -g resume_smg

# Create your resume.json file
{
"name": "Your Name",
"title": "Your Title",
"experience": [
{
"company": "Company Name",
"role": "Your Role",
"duration": "2020-2024",
"achievements": ["Achievement 1", "Achievement 2"]
}
],
"skills": ["JavaScript", "Python", "React"],
"projects": [
{
"name": "Project Name",
"description": "What you built",
"technologies": ["React", "Node.js"]
}
]
}

# Generate StaticMCP
resume_smg ./resume.json --output ./my-smcp

# Deploy to GitHub Pages, Netlify, or Vercel
# Then use: https://bridge.staticmcp.com/sse?url=YOUR_URL

Option 2: Documentation Siteโ€‹

# If you have a Docusaurus site
npm install -g docusaurus-smg
docusaurus-smg ./your-docusaurus-site --output ./staticmcp

# Deploy and connect
netlify deploy --dir ./staticmcp
# Use: https://bridge.staticmcp.com/sse?url=YOUR_NETLIFY_URL

Option 3: Fork an Exampleโ€‹

  1. Build your own SMG: See docusaurus-smg or resume-smg
  2. Deploy with one click to GitHub Pages, Netlify, or Vercel
  3. Start using immediately with the hosted bridge

๐Ÿงช Testing Your StaticMCPโ€‹

Using MCP Inspectorโ€‹

# Test any StaticMCP deployment
npx @modelcontextprotocol/inspector \
"https://bridge.staticmcp.com/sse?url=https://your-site.com"

Using Claude Desktopโ€‹

Add to your MCP configuration:

{
"mcpServers": {
"my-staticmcp": {
"command": "npx",
"args": [
"staticmcp-bridge",
"https://your-site.com"
]
}
}
}

Direct Testingโ€‹

Visit any example URL (like https://staticmcp.com/mcp/mcp.json) to see the raw StaticMCP structure.

๐Ÿ’ก Common Use Casesโ€‹

Developer Portfoliosโ€‹

Perfect for: Showcasing projects, skills, experience Tools: resume_smg Benefits: AI can answer questions about your background

Technical Documentationโ€‹

Perfect for: API docs, user guides, tutorials Tools: docusaurus-smg Benefits: AI can help users navigate and understand docs

Knowledge Basesโ€‹

Perfect for: Company wikis, FAQ systems, procedures Benefits: Internal knowledge becomes AI-searchable

Product Catalogsโ€‹

Perfect for: E-commerce listings, product specs Benefits: AI can help customers find products

๐Ÿš€ What's Next?โ€‹

  1. Try an example above to see StaticMCP in action
  2. Build your own using the guides provided
  3. Share your creation - we love featuring community examples!