Eventium MCP is running

Transport: streamable-http Endpoint: http://mcp-http.titanvx.com/mcp

This server exposes MCP tools and Skills hosted by this instance.

Client Config

URL: http://mcp-http.titanvx.com/mcp
Transport: streamable-http

If you are using Docker on another machine, replace 0.0.0.0 with the server IP.

Quick Checks

curl -s http://mcp-http.titanvx.com/health

Developer Studio

Build MCPs and Skills for this server. Admins approve and publish.

Templates vs Tools

Templates are drafts (not executable). Tools are live and executable.

  1. Developer submits a template (draft).
  2. Admin reviews and validates it.
  3. Admin publishes it to make it an active tool.
  1. Developer Studio: http://mcp-http.titanvx.com:8090/developer
  2. Libraries: http://mcp-http.titanvx.com:8090/libraries
  3. Public Submit (drafts): http://mcp-http.titanvx.com:8090/submit
  4. Docs: http://mcp-http.titanvx.com:8090/docs/index.html
  5. Swagger API: http://mcp-http.titanvx.com:8090/swagger

Admin Studio (Approvals)

Admins review drafts and publish approved tools.

  1. Open Admin Studio: http://mcp-http.titanvx.com:8090/admin
  2. Login as an admin user and enter the Admin API Key in the UI.
  3. Validate drafts and click Publish.

Eventium Tool Library

Only executable tools are shown here (ready to call via MCP).

Eventium Tool Runner

Run executable MCP tools via the HTTP transport.











                
Categories: uncategorized: 43
Total: 43
Filter: all uncategorized
base64_decode
executable
Base64 decode to text (utf-8).
owner: system
uncategorized
Base64 decode to text (utf-8). • Use when: Use to decode base64 text to utf-8.
base64_encode
executable
Base64 encode text (utf-8).
owner: system
uncategorized
Base64 encode text (utf-8). • Use when: Use to base64-encode text.
csv_parse
executable
Parse CSV text into rows (list of dicts if header=true).
owner: system
uncategorized
Parse CSV text into rows (list of dicts if header=true). • Use when: Use to parse CSV text into rows.
csv_to_json
executable
Parse CSV -> JSON array.
owner: system
uncategorized
Parse CSV -> JSON array. • Use when: Use to convert CSV text directly into JSON array output.
gzip_compress_b64
executable
Gzip-compress text and return base64.
owner: system
uncategorized
Gzip-compress text and return base64. • Use when: Use to gzip-compress text and base64-encode the result.
gzip_decompress_b64
executable
Base64 -> gunzip -> text.
owner: system
uncategorized
Base64 -> gunzip -> text. • Use when: Use to base64-decode gzip content to text.
hash_sha256
executable
SHA-256 hash of text (hex).
owner: system
uncategorized
SHA-256 hash of text (hex). • Use when: Use to hash text with SHA-256.
hmac_sha256
executable
HMAC-SHA256(key, message) hex.
owner: system
uncategorized
HMAC-SHA256(key, message) hex. • Use when: Use to compute an HMAC-SHA256 hex digest.
http_get_json
executable
HTTP GET URL and parse JSON (size-limited).
owner: system
uncategorized
HTTP GET URL and parse JSON (size-limited). • Use when: Use to fetch JSON from a URL.
http_get_text
executable
HTTP GET URL and return text (size-limited).
owner: system
uncategorized
HTTP GET URL and return text (size-limited). • Use when: Use to fetch small text content from a URL.
json_merge
executable
Deep-merge two JSON objects (dicts).
owner: system
uncategorized
Deep-merge two JSON objects (dicts). • Use when: Use to deep-merge two JSON objects.
json_parse
executable
Parse JSON string to object.
owner: system
uncategorized
Parse JSON string to object. • Use when: Use to parse JSON text into a data structure.
json_pretty
executable
Pretty-print JSON.
owner: system
uncategorized
Pretty-print JSON. • Use when: Use to format JSON with indentation.
kv_get
executable
Get a value by key.
owner: system
uncategorized
Get a value by key. • Use when: Use to retrieve a stored key/value pair.
kv_list
executable
List keys (optionally by prefix).
owner: system
uncategorized
List keys (optionally by prefix). • Use when: Use to list keys in the KV store.
kv_put
executable
Store a key/value string (requires user_approved=true).
owner: system
uncategorized
Store a key/value string (requires user_approved=true). • Use when: Use to store a key/value pair after explicit user approval.
math_add
executable
Add two numbers.
owner: system
uncategorized
Add two numbers. • Use when: Use for simple addition.
math_safe_eval
executable
Evaluate a safe math expression (no names, no attributes). Example: '2*(3+4)'.
owner: system
uncategorized
Evaluate a safe math expression (no names, no attributes). Example: '2*(3+4)'. • Use when: Use for safe evaluation of simple arithmetic expressions.
math_stats
executable
Compute count/min/max/mean/median/stdev for list of numbers.
owner: system
uncategorized
Compute count/min/max/mean/median/stdev for list of numbers. • Use when: Use to compute basic statistics for a list of numbers.
notes_append
executable
Append a note (requires user_approved=true).
owner: system
uncategorized
Append a note (requires user_approved=true). • Use when: Use to append a note after explicit user approval.
notes_list
executable
List notes.
owner: system
uncategorized
List notes. • Use when: Use to list recent notes.
ping
executable
Health check. Returns 'pong'.
owner: system
uncategorized
Health check. Returns 'pong'. • Use when: Use to confirm the server is reachable.
random_choice
executable
Pick a random element from a list.
owner: system
uncategorized
Pick a random element from a list. • Use when: Use to select a random item from a list.
random_int
executable
Random integer in [low, high].
owner: system
uncategorized
Random integer in [low, high]. • Use when: Use to pick a random integer in a range.
regex_findall
executable
Find all matches for a regex pattern.
owner: system
uncategorized
Find all matches for a regex pattern. • Use when: Use to extract matches using a regex.
regex_sub
executable
Regex replace.
owner: system
uncategorized
Regex replace. • Use when: Use to replace text using a regex pattern.
registry_export
executable
Return full server + tool registry as JSON.
owner: system
uncategorized
Return full server + tool registry as JSON. • Use when: Use to ingest the complete tool registry into memory at startup.
registry_get_tool
executable
Get a single tool spec by name.
owner: system
uncategorized
Get a single tool spec by name. • Use when: Use when you need the full schema/examples for one tool.
registry_search
executable
Search tools by keyword/tags.
owner: system
uncategorized
Search tools by keyword/tags. • Use when: Use to find a small set of relevant tools given a query.
text_diff_unified
executable
Unified diff between two strings.
owner: system
uncategorized
Unified diff between two strings. • Use when: Use to produce a unified diff for two text blobs.
text_slugify
executable
Convert text into a URL-safe slug.
owner: system
uncategorized
Convert text into a URL-safe slug. • Use when: Use to create a URL-safe slug from text.
text_word_count
executable
Count characters, words, and lines.
owner: system
uncategorized
Count characters, words, and lines. • Use when: Use to count characters, words, and lines in a string.
text_wrap
executable
Wrap text to width.
owner: system
uncategorized
Wrap text to width. • Use when: Use to wrap text to a target column width.
time_now_utc
executable
Current UTC time (ISO-8601).
owner: system
uncategorized
Current UTC time (ISO-8601). • Use when: Use when you need the current UTC timestamp.
time_parse_iso
executable
Parse ISO datetime; returns normalized ISO and unix timestamp.
owner: system
uncategorized
Parse ISO datetime; returns normalized ISO and unix timestamp. • Use when: Use to normalize an ISO datetime and get unix epoch seconds.
tool_template_delete
executable
Delete a tool template.
owner: system
uncategorized
Delete a tool template. • Use when: Use to delete a draft template with explicit approval.
tool_template_get
executable
Get a tool template by id.
owner: system
uncategorized
Get a tool template by id. • Use when: Use to fetch one tool template by id.
tool_template_list
executable
List tool templates.
owner: system
uncategorized
List tool templates. • Use when: Use to browse draft/validated/published templates.
tool_template_publish
executable
Publish a validated tool template into the registry.
owner: system
uncategorized
Publish a validated tool template into the registry. • Use when: Use after validation to publish a tool into the registry with explicit approval.
tool_template_upsert
executable
Create or update a tool template.
owner: system
uncategorized
Create or update a tool template. • Use when: Use when a user wants to draft or update a tool template for later publishing.
tool_template_validate
executable
Validate a tool template.
owner: system
uncategorized
Validate a tool template. • Use when: Use to check a draft template before publishing.
url_parse
executable
Parse a URL into components.
owner: system
uncategorized
Parse a URL into components. • Use when: Use to split a URL into components.
uuid4
executable
Generate a UUIDv4 string.
owner: system
uncategorized
Generate a UUIDv4 string. • Use when: Use when a random UUID is needed.