slack-mcp: Agent for Claude Code

.github/agents/skeleton-services-mcp.agent.md

Skeleton Services MCP Configurator is an agent for Claude Code from LesterAJohn/slack-mcp. It costs 43 tokens per session (1,424 once invoked), scanned A, a copy of SharePoint Services MCP Configurator, MIT.

An implementation guide and workspace agent for adapting a repository into an MCP server that exposes additional services. It covers service adapters, configuration, tools, tests, documentation, authentication, Vault, and multi-user PostgreSQL access.

In plain words
What is it for?
Use it when onboarding an API, infrastructure system, or SaaS service and implementing its secure MCP tools, access provisioning, tests, and documentation.
Why use it?
It provides project-specific rules and patterns for adding services while preserving the existing security and transport setup.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

This is LesterAJohn/slack-mcp's own configuration. It tells Claude Code how to work on slack-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything slack-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to LesterAJohn/slack-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/LesterAJohn/slack-mcp/main/.github/agents/skeleton-services-mcp.agent.md
Clone the repo
git clone --depth 1 https://github.com/LesterAJohn/slack-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Skeleton Services MCP Configurator

README.md
[![agentmods](https://agentmods.dev/badge/agents/lesterajohn/slack-mcp/skeleton-services-mcp.svg)](https://agentmods.dev/agents/lesterajohn/slack-mcp/skeleton-services-mcp)
Your own site
<a href="https://agentmods.dev/agents/lesterajohn/slack-mcp/skeleton-services-mcp"><img src="https://agentmods.dev/badge/agents/lesterajohn/slack-mcp/skeleton-services-mcp.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,424 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 91% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01424
Opus 5 $0.00022 $0.00712
Sonnet 5 $0.00009 $0.00285
Haiku 4.5 $0.00004 $0.00142

Measured 7d ago against content hash 9cbc8c30c915, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

Skeleton Services MCP Configurator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

91% identical to SharePoint Services MCP Configurator — 12 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.github/agents/skeleton-services-mcp.agent.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a workspace-scoped implementation agent for this repository.

Primary goal: Adapt the skeleton so new services can be exposed through secure MCP tools while preserving current project patterns.

Documentation links to treat as source of truth:

Current skeleton capabilities to preserve:

  • Dual MCP transports: stdio and HTTP (optionally both in parallel).
  • HTTP auth modes: token, oauth2 introspection, or both.
  • Vault-backed multi-user token index with default-user fallback.
  • Bearer-token seeding for user access provisioning, exposed both as a CLI helper and an MCP tool.
  • OAuth access-token seeding for user access provisioning, exposed both as a CLI helper and an MCP tool.
  • Multi-user Postgres configuration model with default user scope.
  • Vault token lifecycle tool surface for node-vault methods:
    • tokenLookupSelf
    • tokenRenewSelf
    • tokenCreate
    • tokenRevoke
    • tokenRevokeSelf
  • Vault Agent integration pattern for auto-auth and token renewal, including app-readable token sink support.
  • Vault Agent listener/file runtime resolution model (none/file/listener/both) with Postgres-backed non-secret pointer support.
  • Rotation-time configuration model with both global defaults and user-scoped overrides.
  • Vault Raft persistence in local and production compose stacks.
  • Managed unseal key resolution flow (VAULT_UNSEAL_KEY -> src/config/vault.unseal.key.json -> generated key).
  • Compose startup init helper (vault-unseal-key-init) that resolves managed unseal key material before Vault starts.
  • App-only external deployment mode (docker-compose.external.yml) for existing Vault and Postgres services.
  • APP_NAME as the single naming source for derived Vault token paths and Postgres config tables.

Always start by reviewing:

Documentation freshness requirements:

  1. Re-read linked docs before planning changes that touch transports, auth, Vault Agent behavior, token model, or config model.
  2. If implementation behavior changes, update the relevant linked docs in the same change.
  3. Before finalizing, ensure tool catalog, env variables, and test coverage notes in README.md match the code.

Required implementation workflow:

  1. Identify requested service capability and map it into read-only vs mutating operations.
  2. Add/extend environment configuration in src/config/env.js with validation.
  3. Implement a service adapter in src/services with clear boundaries and healthcheck support where possible.
  4. Register MCP tools in src/mcp/server.js using existing error handling wrappers.
  5. Enforce authorizationKey checks for mutating operations.
  6. Preserve sensitive output controls and avoid returning raw secrets by default.
  7. Update runtime wiring in src/index.js and src/http/index.js when new dependencies are required.
  8. Preserve transport behavior for stdio/http/both and avoid regressions in HTTP security controls.
  9. Keep Vault for secrets and Postgres for configuration unless explicitly requested otherwise.
  10. Add tests in tests/*.test.js for success paths, auth failures, redaction behavior, and transport-level behavior when touched.
  11. For config changes, maintain multi-user scoping with default user fallback.
  12. For token auth changes, maintain default-user fallback semantics in Vault token index.
  13. If Vault token lifecycle operations are requested, expose them as MCP tools with strict authorization and safe output.
  14. If Vault Agent is requested, expose token sink read path via service/tool wiring and document deployment assumptions.
  15. If Vault Agent runtime behavior is touched, add or update tests for listener and both auth modes plus env fallback semantics.
  16. For rotation changes, preserve both default rotation time and user-specific rotation time support.
  17. If bearer-token seeding is requested, expose it as an MCP tool plus CLI helper, keep the Vault user token structure compatible with verification, and require authorizationKey for the tool.
  18. If OAuth access-token seeding is requested, expose it as an MCP tool plus CLI helper, keep the Vault user token structure compatible with verification, and require authorizationKey for the tool.
  19. Update README.md so new tools and environment variables are documented.
  20. Run npm test before finishing and summarize changes with file paths.
  21. If compose or Vault startup behavior changes, preserve vault-unseal-key-init dependency ordering and document any new env variables.
  22. If external services are supported, document the app-only compose path and required VAULT_* and POSTGRES_* env vars.
  23. If app naming changes, derive Vault token paths and Postgres config tables from APP_NAME and avoid separate naming knobs in docs.

Read the full file on GitHub · 102 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 102 lines · 43 tokens per session scan A 9cbc8c30c915

Subscribe to this mod's changes

Skeleton Services MCP Configurator is an agent published in the GitHub repository LesterAJohn/slack-mcp (0 stars, last pushed 9d ago), licensed MIT. It adds 43 tokens to every session and 1,424 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to SharePoint Services MCP Configurator, differing in 12 lines, and is treated as a copy.

Related

Other agents, from other repositories

Power Platform MCP Integration Expert

Expert in Power Platform custom connector development with MCP integration for Copilot Studio - comprehensive knowledge of schemas, protocols, and integration patterns.

github/awesome-copilot · 31 tokens

php-developer

Write idiomatic PHP code with design patterns, SOLID principles, and modern best practices. Implements PSR standards, dependency injection, and comprehensive testing. Use PROACTIVELY for PHP architecture, refactoring, or implementing design patterns.

davepoon/buildwithclaude · 51 tokens

backend-reviewer

Use when reviewing service-layer logic, module boundaries, business rules, or cross-service contracts — verifies architecture integrity and service correctness against the api and architect persona standards.

jeremylongshore/tons-of-skills-marketplace · 36 tokens

integrations-engineer

Third-party integration specialist for SMB Product-Builder archetypes. Owns the integration contract — OAuth2/API-key flows, webhook signature verification, idempotency keys, retry/backoff with jitter, rate-limit handling, secret storage, and sandbox→prod promotion — for Stripe, Twilio, QuickBooks, Google/Microsoft…

avelikiy/great_cto · 106 tokens

gate

API quality gates — linting, style enforcement, breaking change CI, and API governance.

tonone-ai/tonone · 19 tokens

dotnet-architecture-reviewer

Reviews a .NET codebase or repository and produces a structured architecture report — layering and dependency-rule violations, coupling, CQRS/handler hygiene, EF Core boundary leaks, testability, and concrete prioritized fixes. Use when the user wants an architecture review, a "second opinion" on structure, a PR-level…

StefanTheCode/dotnet-ai-toolkit · 102 tokens