Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
TASIE_API_KEYNoOptional bearer token for TASIE backend
TASIE_API_BASENoTASIE backend base URLhttp://localhost:8000
TASIE_TIMEOUT_MSNoPer-request timeout in milliseconds120000

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tasks
{
  "list": {},
  "cancel": {},
  "requests": {
    "tools": {
      "call": {}
    }
  }
}
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}
resources
{
  "subscribe": true,
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
scan_codeA

Statically scan a source file for security vulnerabilities using TASIE. Returns ranked findings (SQLi, command injection, SSTI, XSS, path traversal, deserialization, and ~90 more classes) with severity, CWE and OWASP tags. Send the code inline — no files need to exist on the server.

scan_dependenciesA

Software Composition Analysis: scan a Python dependency manifest (requirements.txt / Pipfile / pyproject) for known-vulnerable packages. Send the manifest text inline.

detect_frameworksA

Fingerprint the web framework(s) in a source file (Flask, FastAPI, Django, …) and report where the request-handling attack surface is. Send the code inline.

remediate_fileA

Full verified remediation loop on a file already loaded on the TASIE host: detect -> live-exploit in a sandbox -> assemble patch -> re-verify. Requires the full Docker-enabled TASIE deployment (TASIE_API_BASE). Returns the proof and the proposed patch for human review.

scan_repoA

Ingest a multi-file repository on the TASIE host: discover routes and scan every module for vulnerabilities. Requires the path to exist on the TASIE backend (full deployment).

tasie_healthA

Check that the TASIE backend is reachable and report which endpoint the MCP app is wired to.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
Health ChecksCurrent health status of all registered health checks
Scan ReportUI component for Scan Report
Widget ExamplesProvides metadata and examples for all registered UI widgets

TDQS

A4/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct action: framework detection, vulnerability scanning (code, dependencies, repo), remediation, and health checking. No two tools appear to do the same thing, and their descriptions clearly delineate the use cases.

Naming Consistency4/5

Five of six tools follow the verb_noun pattern (detect_frameworks, remediate_file, scan_code, scan_dependencies, scan_repo). The outlier is tasie_health, which uses a noun_health format and breaks the predictable verb-led pattern.

Tool Count5/5

With six tools, the set is well-scoped for a security scanning MCP server. Each tool covers a distinct and necessary capability without redundancy or bloat.

Completeness4/5

The tool surface covers the core workflow: detect frameworks, scan code and dependencies, scan full repos, remediate, and check health. Minor gaps exist (e.g., no tool for managing or re-listing past findings), but no critical dead ends are present.

Maintenance

ActivitySlowing
ResponsivenessNo issues