Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
MCP Server Giphy
by
magarcia
Verified
GitHub
Image & Video Processing
Entertainment & Media
TypeScript
MIT License
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
mcp-server-giphy
.github
llms.txt
src
CONTRIBUTING.md
.cursorrules
Dockerfile
.env.example
eslint.config.mjs
.gitignore
jest.config.mjs
LICENSE
package.json
package-lock.json
README.md
smithery.yaml
tsconfig.json
{ "name": "mcp-server-giphy", "version": "1.0.3", "description": "An implementation of Giphy integration with Model Context Protocol", "author": "Martin Garcia Monterde <hola@magarcia.io>", "license": "MIT", "main": "dist/index.js", "type": "module", "bin": { "mcp-server-giphy": "dist/index.js" }, "files": [ "dist" ], "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/magarcia/mcp-server-giphy.git" }, "bugs": { "url": "https://github.com/magarcia/mcp-server-giphy/issues" }, "homepage": "https://github.com/magarcia/mcp-server-giphy#readme", "keywords": [ "mcp", "giphy", "model-context-protocol" ], "targets": { "main": { "context": "node", "includeNodeModules": false, "outputFormat": "esmodule", "isLibrary": true, "optimize": true, "engines": { "node": ">=16.0.0" }, "source": "src/index.ts", "distDir": "dist" } }, "scripts": { "clean": "rm -rf build dist", "prebuild": "npm run clean", "build": "tsc && npm run bundle", "postbuild": "chmod +x dist/index.js", "bundle": "parcel build --target main --no-cache", "start": "node dist/index.js", "dev": "ts-node --files src/index.ts", "lint": "eslint src", "typecheck": "tsc --noEmit", "preinspector": "npm run build", "inspector": "npx @modelcontextprotocol/inspector npm run start", "test": "jest" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "axios": "^1.8.4", "dotenv": "^16.3.1" }, "devDependencies": { "@eslint/js": "^8.57.1", "@types/jest": "^29.5.0", "@types/node": "^16.18.126", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "eslint": "^8.57.1", "globals": "^16.0.0", "jest": "^29.5.0", "parcel": "^2.12.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.2", "typescript": "^5.3.3", "typescript-eslint": "^0.0.1-alpha.0" } }