effect-mcp-server

effect-mcp-server is a skill for Claude Code, Codex from mpsuesser/pi-effect-harness. It costs 55 tokens per session (3,577 once invoked), scanned A, original, MIT.

A guide for building MCP servers with Effect and TypeScript. MCP is a standard way for AI applications to discover and use tools, data, and reusable prompts.

In plain words
What is it for?
Use it when implementing an Effect-based MCP server that exposes tools, resources, or prompts over a local process or an HTTP connection.
Why use it?
It removes the need to work out the Effect-specific server structure, schemas, tool definitions, and communication methods from scratch.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when implementing an Effect-based MCP server that exposes tools, resources, or prompts over a local process or an HTTP connection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mpsuesser/pi-effect-harness/effect-mcp-server
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mpsuesser/pi-effect-harness --skill effect-mcp-server
Clone the repo
git clone --depth 1 https://github.com/mpsuesser/pi-effect-harness

Made for: Claude Code, Codex.

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 effect-mcp-server

README.md
[![agentmods](https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-mcp-server.svg)](https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-mcp-server)
Your own site
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-mcp-server"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-mcp-server.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,577 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 original No closer match found 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.00055 $0.03577
Opus 5 $0.00028 $0.01788
Sonnet 5 $0.00011 $0.00715
Haiku 4.5 $0.00006 $0.00358

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

Security

Grade A, and why

effect-mcp-server 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 8d 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.

harnesses/effect/skills/effect-mcp-server/SKILL.md · 488 lines

How it starts

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

You are an Effect TypeScript expert specializing in building MCP (Model Context Protocol) servers using Effect's built-in MCP module.

Effect Source Reference

The Effect v4 source is available at ~/.cache/effect-v4/. Browse and read files there directly to look up APIs, types, and implementations.

Reference these files:

  • packages/effect/MCP.md — primary MCP guide with full examples
  • packages/effect/src/unstable/ai/McpServer.ts — server implementation and API
  • packages/effect/src/unstable/ai/McpSchema.ts — schema types, param helper, error classes

What is MCP

Model Context Protocol (MCP) is a standard protocol for LLM tool integration. It allows AI clients (Claude, etc.) to discover and invoke tools, read resources, and use prompt templates exposed by a server. Effect provides a first-class MCP server implementation built on its Layer and Schema systems.

Core Imports

import { Context, Effect, Layer, Logger } from 'effect';
import { Schema } from 'effect';
import { McpServer, McpSchema, Tool, Toolkit } from 'effect/unstable/ai';

For platform-specific transports:

// Node.js stdio transport
import { NodeRuntime, NodeSink, NodeStream } from '@effect/platform-node';

// Or using NodeStdio
import { NodeRuntime, NodeStdio } from '@effect/platform-node';

Architecture Overview

An MCP server is composed of three kinds of part layers merged together, then provided with a transport layer:

Layer.mergeAll(
  ...resources,    // McpServer.resource(...)
  ...prompts,      // McpServer.prompt(...)
  toolkitLayer     // McpServer.toolkit(...) with implementations
).pipe(
  Layer.provide(transportLayer),   // McpServer.layerStdio(...) or McpServer.layerHttp(...)
  Layer.provide(loggingLayer)      // Logger — stderr for stdio transport
)

Each part layer has type Layer.Layer<never, never, ...> — they register themselves with the McpServer service and produce no output type.

Tools and Toolkit

Defining Tools

Read the full file on GitHub · 488 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. 8d ago First seen · 488 lines · 55 tokens per session scan A cb8a698fefbd

Subscribe to this mod's changes

effect-mcp-server is a skill published in the GitHub repository mpsuesser/pi-effect-harness (24 stars, last pushed 2mo ago), licensed MIT. It adds 55 tokens to every session and 3,577 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.