Photography Portfolio

v1.0.0

Photography gallery and portfolio

photographyportfoliogalleryimages

Server Information

Server ID
photo
Endpoint URL
https://bookchaowalit-photo-frontend.vercel.app
Author
bookchaowalit
Available Tools
4 tools

About

A photography portfolio with albums, locations, and EXIF data. Features gallery browsing and filtering. ## Features - Photo gallery - Album organization - Location tagging - EXIF metadata

Available Tools

photo_get_photos

Browse photo gallery

Input Schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number"
    }
  }
}

photo_get_by_album

Filter by album

Input Schema
{
  "type": "object",
  "properties": {
    "album": {
      "type": "string"
    }
  }
}

photo_get_by_location

Filter by location

Input Schema
{
  "type": "object",
  "properties": {
    "location": {
      "type": "string"
    }
  }
}

photo_get_exif

Get photo metadata

Input Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    }
  }
}

Usage Example

Connect to this MCP server using the Model Context Protocol:

{
  "mcpServers": {
    "photo": {
      "command": "node",
      "args": ["path/to/server.js"],
      "env": {
        "SERVER_URL": "https://bookchaowalit-photo-frontend.vercel.app"
      }
    }
  }
}