AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

TGYD Helige Pi

mcp-tgyd-helige-pi · by TGYD-helige

Pluggable extension packages for the Pi AI-agent runtime. Each package exposes LLM-callable tools via MCP — covering IM workspace integrations (Lark, DingTalk, WeCom), browser & computer automation, persistent memory, telemetry, task scheduling, image generation, web access, security policies, and more.

No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add mcp-tgyd-helige-pi

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-tgyd-helige-pi)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of TGYD Helige Pi? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Pi

Shared TypeScript packages for Pi runtime applications.

This repository contains the open-source runtime contracts, adapters, and orchestration helpers that are consumed by Pi Agent and related applications. The packages are intentionally small and composable: host applications provide HTTP routing, authentication, model runtime setup, deployment configuration, and product-specific UI.

Packages

| Category | Package | Purpose | | --- | --- | --- | | Core | @amaster.ai/pi-shared | Shared runtime types and contracts: settings loader, session/event/artifact types, turn and subagent types. | | Core | @amaster.ai/pi-storage | JSON-file and MySQL/Prisma persistence adapters for sessions, transcripts, events, memory, artifacts, subagents, and scheduled tasks. | | Extension | @amaster.ai/pi-attachments | Attachment normalization, local/remote upload handling, document parsing, and model-readable attachment prompts. | | Extension | @amaster.ai/pi-telemetry | Runtime telemetry with Langfuse and OpenTelemetry exporters. | | Extension | @amaster.ai/pi-task-scheduler | Cron-based scheduled task management with LLM-callable tools. | | Extension | @amaster.ai/pi-browser-use | Browser automation wrapping chrome-devtools-mcp with browser_-prefixed tools. | | Extension | @amaster.ai/pi-web-access | Web search and URL content extraction across configurable providers. | | Extension | @amaster.ai/pi-computer-use | Computer-use extension for CUA computer-server with desktop automation tools. | | Extension | @amaster.ai/pi-channels | Native messaging channels: Feishu, WeCom, and webhooks. | | Extension | @amaster.ai/pi-memory | Persistent curated memory (MEMORY.md + USER.md) injected into the system prompt as a refreshed prompt snapshot. | | Extension | @amaster.ai/pi-security | Resource-aware security policy engine and tool authorization. | | Extension | @amaster.ai/pi-teamwork | Team collaboration and issue management via Multica. | | Extension | @amaster.ai/pi-image-gen | Image generation via OpenAI gpt-image, Google Nano Banana, Alibaba Qwen-Image, OpenRouter, and custom providers. | | Extension | @amaster.ai/pi-lark | Lark/Feishu workspace integration through lark-cli, including calendar, docs, drive, sheets, Base, tasks, mail, wiki, and IM skills. | | Extension | @amaster.ai/pi-wecom | WeCom workspace integration through wecom-cli, including contacts, messages, meetings, schedules, todos, docs, and smart sheets. | | Extension | @amaster.ai/pi-dingtalk | DingTalk workspace integration through dws CLI, including calendar, docs, chat, todos, sheets, AI tables, approvals, mail, wiki, and meeting minutes. |

Core packages provide types and persistence used by every host application. Extension packages each register Pi runtime extensions via their ./extension subpath entry point and are loaded on demand.

Every package is ESM-only and published under the @amaster.ai npm scope.

Extension Previews

@amaster.ai/pi-attachments @amaster.ai/pi-telemetry @amaster.ai/pi-task-scheduler

@amaster.ai/pi-browser-use @amaster.ai/pi-computer-use @amaster.ai/pi-channels

@amaster.ai/pi-memory @amaster.ai/pi-security @amaster.ai/pi-teamwork

@amaster.ai/pi-image-gen @amaster.ai/pi-web-access @amaster.ai/pi-memory-mem0

@amaster.ai/pi-lark @amaster.ai/pi-wecom @amaster.ai/pi-dingtalk

Requirements

  • Node.js >=24
  • pnpm 10.18.3

Use Corepack when possible:

corepack enable
corepack install -g pnpm@10.18.3

Development

Install dependencies:

pnpm install

Run the full local check:

pnpm run pr-check

Common commands:

pnpm build
pnpm typecheck
pnpm test
pnpm --filter @amaster.ai/pi-storage prisma:generate

@amaster.ai/pi-storage includes a Prisma schema at packages/storage/prisma/schema.prisma. The root build and typecheck scripts generate the Prisma client before compiling project references.

Consuming Packages

Install only the packages your application needs:

pnpm add @amaster.ai/pi-shared @amaster.ai/pi-storage

Most packages expose a root entry point. Some packages also expose focused subpath entry points:

import { createRuntimeStorage } from "@amaster.ai/pi-storage";
import { JsonRuntimeStorage } from "@amaster.ai/pi-storage/json";
import { loadPiSettings } from "@amaster.ai/pi-shared/settings";
import { createLangfuseExporter } from "@amaster.ai/pi-telemetry/langfuse";
import { createOtelExporter } from "@amaster.ai/pi-telemetry/otel";
import memoryExtension from "@amaster.ai/pi-memory/extension";

Extension packages register themselves through their ./extension subpath entry point. Host applications import these and pass them to the Pi runtime during setup.

See each package README for package-specific examples and public API notes.

License

Apache-2.0

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.