소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill splunk-mcp-server-setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | splunk-mcp-server-setup |
| description | >- Use when this capability is needed. |
Automates setup of the Splunk MCP Server app (Splunk_MCP_Server).
For newer Cisco Data Fabric wording, this is the MCP/tool-access route for agentic workflows. Federated search, data pipelines, and AI Toolkit workflows remain in their dedicated skills.
This skill handles five operator tasks:
splunk-ta/ cachemcp.conf/services/mcp or the hosted SCS MCP GatewayThe bridge bundle uses the same mcp-remote wrapper pattern for all three tools, so
one rendered directory can be opened in Cursor, registered with Codex, and auto-wired
into Claude Code's .mcp.json. The wrapper passes header placeholders such as
${SPLUNK_MCP_HEADER_X_SF_TOKEN} to mcp-remote, keeping token values in the
local env file instead of command argv.
Use the repo-local package in splunk-ta/ as the default install source.
The packaged app currently lives in:
splunk-ta/splunk-mcp-server_110.tgz
Install it with the shared installer:
bash skills/splunk-app-install/scripts/install_app.sh \
--source local \
--file splunk-ta/splunk-mcp-server_110.tgz
Or let this skill do the install/update step for you:
bash skills/splunk-mcp-server-setup/scripts/setup.sh --install
To remove the app again:
bash skills/splunk-mcp-server-setup/scripts/setup.sh --uninstall
The agent must NEVER ask for passwords, bearer tokens, or other secrets in chat.
Splunk credentials come from the project-root credentials file (falls back to
~/.splunk/credentials):
bash skills/shared/scripts/setup_credentials.sh
MCP bearer tokens are secrets. Always write them to a local-only file:
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--token-user "${SPLUNK_USER}" \
--write-token-file /tmp/splunk_mcp.token
The agent may freely ask for non-secret values such as:
Use an existing Splunk user that has the mcp_tool_admin capability. In most
lab setups that should be the same account already configured in
SPLUNK_USER.
For prerequisite collection, use
skills/splunk-mcp-server-setup/template.example as the intake worksheet and
keep any filled copy local as template.local.
| Item | Value |
|---|---|
| Search-tier API | SPLUNK_SEARCH_API_URI env var (legacy alias: SPLUNK_URI) |
| Cloud stack | SPLUNK_CLOUD_STACK for Splunk Cloud |
| App name | Splunk_MCP_Server |
| Local package | splunk-ta/splunk-mcp-server_110.tgz |
| Credentials | Project-root credentials file (falls back to ~/.splunk/credentials) |
| Skill scripts | skills/splunk-mcp-server-setup/scripts/ |
bash skills/splunk-mcp-server-setup/scripts/setup.sh --install
The setup script detects whether Splunk_MCP_Server is already installed and
uses the shared app installer in install or update mode automatically.
bash skills/splunk-mcp-server-setup/scripts/setup.sh --uninstall
This delegates to the shared app uninstaller for Splunk_MCP_Server and
restarts Splunk automatically on Enterprise targets unless the shared workflow
is changed to skip restart. Run --uninstall by itself; do not combine it with
render, token, or configuration flags.
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--timeout 90 \
--max-row-limit 2000 \
--default-row-limit 250 \
--require-encrypted-token true \
--token-default-lifetime-seconds 2592000 \
--token-max-lifetime-seconds 7776000 \
--global-rate-limit 600 \
--tenant-authenticated 240 \
--tenant-unauthenticated 60
This updates supported fields in mcp.conf:
[server] timeout[server] max_row_limit[server] default_row_limit[server] ssl_verify[server] require_encrypted_token[server] legacy_token_grace_days[server] mcp_token_default_lifetime_seconds[server] mcp_token_max_lifetime_seconds[server] token_key_reload_interval_seconds[rate_limits] admission and circuit-breaker valuesThe script also fixes visible=true on the app if ACS or local installs left it
hidden in Splunk Web.
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--rotate-keys \
--rotate-key-size 4096
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--token-user "${SPLUNK_USER}" \
--token-expires-on +30d \
--write-token-file /tmp/splunk_mcp.token
The script writes the encrypted token to the target file with 0600
permissions. It does not print the token to stdout.
If you disable require_encrypted_token, the app intentionally fails closed on
/mcp_token minting and key rotation. Do not combine
--require-encrypted-token false with --write-token-file or --rotate-keys
in the same run.
Choose one gateway mode:
| Mode | Endpoint | Required secret files |
|---|---|---|
platform | Splunk Platform app endpoint, usually /services/mcp on port 8089 | encrypted MCP bearer token file when writing a live .env.splunk-mcp |
o11y | hosted SCS MCP Gateway | --o11y-token-file |
combined | hosted SCS MCP Gateway with Splunk Platform + Observability headers | --o11y-token-file and --splunk-jwt-file |
Default platform mode preserves the existing local app workflow:
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--render-clients \
--bearer-token-file /tmp/splunk_mcp.token \
--cursor-workspace ~/Projects/my-cursor-workspace
O11y-only hosted gateway:
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--render-clients \
--gateway-mode o11y \
--scs-region pdx10 \
--o11y-realm us1 \
--o11y-token-file /tmp/splunk_o11y_api_token
Combined Splunk Platform + Observability gateway:
bash skills/splunk-mcp-server-setup/scripts/setup.sh \
--render-clients \
--gateway-mode combined \
--scs-region pdx10 \
--o11y-realm us1 \
--o11y-token-file /tmp/splunk_o11y_api_token \
--splunk-tenant mytenant \
--splunk-jwt-file /tmp/splunk_mcp_jwt
The SCS gateway URL is derived as:
https://region-<REGION>.api.scs.splunk.com/system/mcp-gateway/v1/
Current documented realm-to-SCS-region mappings:
| O11y realm | SCS region |
|---|---|
eu0 | dub10 |
eu1 | fra10 |
eu2 | lon10 |
us0 | iad10 |
us1 | pdx10 |
us3 | pdx10 |
jp0 | tyo10 |
au0 | syd10 |
sg0 | sin10 |
Google Cloud Platform realms and GovCloud realms are not supported by the
hosted MCP Gateway; the renderer rejects known unsupported values such as
us2 and gov*. Use --gateway-url only when Splunk provides an explicit
gateway endpoint.
Default render target:
./splunk-mcp-rendered
The rendered bundle contains:
.cursor/mcp.json for Cursorrun-splunk-mcp.sh as a shell stdio-to-HTTP bridgerun-splunk-mcp.js as the Node bridge used by Cursor, Codex, and Claude Code registrations.env.splunk-mcp.example.env.splunk-mcp when a token file is suppliedregister-codex-mcp.sh to sync a portable Codex launcher bundle under ~/.codex/mcp-bridges/When --render-clients runs, the skill also applies client setup by default:
CLIENT_NAME with Codex using a stable home-local launcher copy so repo moves do not break startup<cursor-workspace>/.cursor/mcp.json<workspace>/.mcp.json for Claude Code--cursor-workspace is omittedUse --no-register-codex, --no-configure-cursor, or --no-configure-claude to opt
out of any client update while still rendering the bundle.
The shell wrapper expects mcp-remote on PATH; the Node wrapper used by client
registrations prefers mcp-remote on PATH and falls back to npx mcp-remote.
For o11y and combined gateway modes, the wrapper also passes
--transport http-only --allow-http to match Splunk's hosted gateway examples.
Do not add hosted Observability AI Assistant MCP tools to local
Splunk_MCP_Server custom tool manifests. Gateway mode only configures client
headers and endpoint selection.
bash skills/splunk-mcp-server-setup/scripts/validate.sh
Checks:
/services/mcp responds to a JSON-RPC ping/services/mcp URL is saneTwo important policy files are not exposed through a safe remote admin API in this app:
local/safe_spl.jsonlocal/generating_commands.jsonThose files must be managed as app-local overlays on targets where you control the filesystem. On Splunk Cloud, treat those as package-content concerns rather than something this repo silently edits in place.
See reference.md for the exact implications.
safe_spl.json is local-only: the app loads it from the app directory,
not from a custom REST config endpoint.run-splunk-mcp.js bridge via mcp-remote.mcp.conf is the supported remote configuration surface: use it for
runtime controls such as row limits, TLS verification, and token policy./services/mcp and
depends on custom REST handlers plus KV Store-backed tool metadata.--gateway-mode o11y or combined and does not install hosted
Observability tools into the local Splunk Platform app.The repo's .cursor/mcp.json points to splunk-mcp-rendered/run-splunk-mcp.js.
The bridge wrapper is tracked, but the live .env.splunk-mcp token file is
local-only and does not exist until the render/token step runs.
To activate Splunk MCP in Cursor:
ls splunk-mcp-rendered/.env.splunk-mcp
.cursor/mcp.json entry.If --cursor-workspace was used during render, the workspace's own
.cursor/mcp.json was also updated. If it was omitted, the repo-root
.cursor/mcp.json is the active registration.
The repo's .mcp.json points to splunk-mcp-rendered/run-splunk-mcp.js.
The bridge wrapper is tracked, but the live .env.splunk-mcp token file is
local-only and does not exist until the render/token step runs.
To activate Splunk MCP in Claude Code:
ls splunk-mcp-rendered/.env.splunk-mcp
.mcp.json entry.The --render-clients step writes .mcp.json to the target workspace automatically
unless --no-configure-claude is passed. If the workspace is the repo root, the
committed .mcp.json is updated in place.
Source: chambear2809/splunk-cisco-skills — distributed by TomeVault.