We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/earchibald/amicus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•637 B
# Amicus Plugins Interface
**Status:** Draft / Experimental
Amicus MCP is designed to be extensible. Future versions will support plugins for:
1. **Remote Transports:** Connect to a Context Bus over HTTP/gRPC.
2. **Custom Loggers:** Send heartbeats to Datadog/Prometheus.
3. **Security Scanners:** Add custom regex patterns for the `SensitiveDataScanner`.
## Interface Specification (Draft)
```python
class AmicusPlugin:
def on_startup(self, config: dict):
pass
def on_state_update(self, new_state: dict):
pass
def on_shutdown(self):
pass
```
*More details coming in v0.4.0.*