Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
PHPocalypse-MCP
by
plapinski
Verified
GitHub
Developer Tools
Monitoring
TypeScript
MIT License
1
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
PHPocalypse-MCP
src
.gitignore
LICENSE
package.json
package-lock.json
phpocalypse-mcp.yaml.example
README.md
schema.json
tsconfig.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "tools": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "command": { "type": "string" }, "args": { "type": "array", "items": { "type": "string" } } }, "required": ["name", "command"], "additionalProperties": false } } }, "required": ["tools"], "additionalProperties": false }