Released on 2025-07-07

🎉 MCP Hive Now Supports Prompts & Resources!

Transform how you work with AI by centralizing your prompts and resources in one place, fully compliant with any MCP client.

MCP Prompts

  • Template Management: Easily manage prompts by adding templates with auto-detectable variables
  • Reusable Structure: Create reusable, structured prompt templates once and use everywhere
  • MCP Compliant: Works with argument validation and customization across any MCP client
  • Current Support: Text-based templates with custom arguments

MCP Resources

  • Simple Upload: Simply upload any text or binary file and set the resource path
  • Universal Support: Support for documents, images, code files, PDFs, and more
  • MCP Compliant: Instant access to your files from any MCP client
  • Current Support: Full support for all text and binary file types

Key Benefits

  • ✅ Fully compliant with MCP protocol standards
  • ✅ Works with any MCP client (Claude Desktop, Cursor, and more)
  • ✅ Centralized management of all your AI assets
  • ✅ No more copy-pasting or recreating prompts and resources

Coming Soon

🔜 Multi-modal prompt support (images, audio)

🚀 Simplified MCP Server Onboarding

Revolutionary simplified process that combines S3 upload, command generation, and onboarding into a single endpoint, eliminating the previous 3-step workflow for onboarding public MCP servers.

Before vs. After:

  • Old: 3-step workflow with separate upload, generation, and onboarding
  • New: Single unified endpoint for complete onboarding

API Endpoint:

curl -X POST https://your-domain.com/api/hives/from-mcp-server \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "zipFile=@your-mcp-server.zip" \
  -F 'data={
    "hiveName": "Your Hive Name",
    "hiveDescription": "Your hive description",
    "version": "1.0.0",
    "env": {},
    "tags": ["tag1", "tag2"],
    "homePage": "https://your-homepage.com",
    "securitySchemes": [],
    "oAuthClient": null
  }'

🔄 Hive Update Capability

Enable updates for hives that were onboarded from public MCP servers, allowing seamless version management and feature updates.

Features:

  • ✅ Update existing MCP server-based hives
  • ✅ Seamless version management
  • ✅ Feature updates without re-onboarding
  • ✅ Maintain existing configurations and settings

Update API:

curl -X PUT https://your-domain.com/api/hives/{hive-id}/from-mcp-server \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "zipFile=@updated-mcp-server.zip" \
  -F 'data={
    "version": "1.1.0",
    "env": {},
    "securitySchemes": [],
    "oAuthClient": null
  }'

🔍 Zip File Inspection

New endpoint to validate and inspect zip files before onboarding, ensuring compatibility and preventing deployment issues.

Validation Features:

  • ✅ Pre-onboarding compatibility checks
  • ✅ Structure validation
  • ✅ Dependency verification
  • ✅ Error prevention before deployment

Inspection Endpoint:

curl -X POST https://mcp-server.ti.trilogy.com/inspect-zip \
  -H "x-api-key: YOUR_API_KEY" \
  -F "zipFile=@your-mcp-server.zip" \
  -F 'env={"VAR1": "value1", "VAR2": "value2"}'
The inspection endpoint helps you validate your MCP server package before the actual onboarding process, saving time and preventing deployment issues.

🔧 Developer Experience Improvements

Enhanced Workflow:

  1. Inspect your MCP server package using the new validation endpoint
  2. Onboard with the simplified single-step process
  3. Update seamlessly when new versions are available
  4. Manage resources and prompts with improved interfaces

All new features are available immediately. Use our unified CLI @mcp-hive/cli for the best development experience.