Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
ServeMyAPI
by
Jktfe
Verified
GitHub
Security
Developer Tools
TypeScript
4
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
serveMyAPI
examples
src
CLAUDE.md
CONTRIBUTING.md
Dockerfile
.gitignore
mcp-server-template.md
MCP-TypeScript-Readme.md
package.json
README.md
smithery.yaml
tsconfig.json
{ "name": "servemyapi", "version": "1.0.0", "description": "Personal MCP server for securely storing and accessing API keys across projects using the macOS Keychain", "type": "module", "main": "dist/index.js", "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts", "lint": "eslint 'src/**/*.ts'", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": ["mcp", "api", "keychain", "macos"], "author": "James King", "license": "ISC", "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "@types/express": "^5.0.0", "@types/node": "^22.13.10", "express": "^5.0.1", "keytar": "^7.9.0", "ts-node": "^10.9.2", "typescript": "^5.8.2", "zod": "^3.24.2" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.26.1", "@typescript-eslint/parser": "^8.26.1", "eslint": "^9.22.0", "nodemon": "^3.1.9" } }