Ticker Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Ticker Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Meta-MCP & A2A server — tools for building, testing, and connecting AI agents.
| Tool | Description |
|---|---|
mcp_validate_config | Validate MCP server config (Claude / Cursor mcpServers) |
mcp_inspect_schema | Analyze a JSON Schema and explain its MCP tool mapping |
mcp_format_response | Wrap data into proper MCP response format |
| Tool | Description |
|---|---|
a2a_register | Register an agent's capabilities |
a2a_discover | Find agents by capability or keyword |
a2a_list_all | List all registered agents |
a2a_submit_task | Submit a task for processing |
a2a_get_task | Check task status and get results |
a2a_list_tasks | List all tasks, optionally filtered by status |
server.py
├── ToolRegistry ← Decorator-based framework with auto schema inference
├── Meta-MCP Tools ← MCP diagnostic, validation, formatting utilities
└── A2A Module ← In-memory agent registry & task delegation systemAdding a new tool:
@registry.tool("tool_name", "What it does")
def my_tool(param1: str, param2: int = 42) -> dict:
"""Docstring becomes tool description."""
return {"result": param1 * param2}Schema is auto-generated from type hints.
pip install "mcp[cli]"
python server.py # stdio mode
python server.py --transport sse # HTTP mode (port 8080){
"mcpServers": {
"toolkit": {
"command": "python",
"args": ["/path/to/server.py"]
}
}
}mcp[cli])MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.