npm shakespeare-monologues-mcpstreamable-httpMITupdated 9d ago
A small, read-only Model Context Protocol server that lets MCP-capable AI clients search and fetch Shakespeare monologue metadata from shakespeare-monologues.org.
Shakespeare's Monologues で何ができる?
Shakespeare's Monologues — MCP server
A small, read-only Model Context Protocol server that lets MCP-capable AI clients search and fetch Shakespeare monologue metadata from shakespeare-monologues.org.
It's a thin, stateless wrapper over the site's public JSON index
(/api/monologues.json) — no database, no secrets. Every result carries the
monologue's permalink url (where the full text, scene context, and modern-English
paraphrase live) and an attribution note.
Tools
| Tool | What it does |
|---|---|
search_monologues |
Free-text search (character / play / first line) + filters: gender, play, style, act, limit. |
get_monologue |
One monologue's index entry by numeric id. |
random_monologue |
A random monologue, optional gender / play filters. |
list_plays |
Every play with its classification and monologue count. |
list_all_monologues_for_a_character |
Every monologue spoken by a named character. |
get_monologue_of_the_day |
The current Monologue of the Day (latest social post). |
get_paraphrased_monologue |
A monologue's full text + its modern-English paraphrase (AI-generated; may be null if not yet generated). |
get_scene_summary |
AI-generated summary of the scene a monologue is in (by monologue id). |
get_play_summary |
AI-generated summary of a play (by title). |
The paraphrase and summaries are AI-generated (Claude) and only partially cached so far, so those tools return
nullwhere content hasn't been generated yet.
Run locally
Two transports, same tools. server.ts builds the tool surface and knows
nothing about how it's reached; index.ts serves it over HTTP and stdio.ts
over stdio.
Over stdio, the way an MCP client spawns a local server:
npx shakespeare-monologues-mcp
Over HTTP, which is how the hosted instance runs:
npm install
npm run build
npm start # listens on :3000, POST /mcp (set PORT to change)
Health check: GET /health → {"ok":true}.
Neither mode needs credentials — the server reads the site's public JSON index.
Set MONOLOGUES_API_URL to point it elsewhere, and POSTHOG_PROJECT_API_KEY=""
to disable analytics.
Connecting a client
Remote MCP means users add a URL, no install. In a client that supports remote / custom MCP servers (Claude Desktop connectors, etc.), add:
https://mcp.shakespeare-monologues.org/mcp
Or run it yourself over stdio, with no hosted dependency:
{
"mcpServers": {
"shakespeare-monologues": {
"command": "npx",
"args": ["-y", "shakespeare-monologues-mcp"]
}
}
}
For clients configured with a JSON config file, use the streamable-HTTP transport:
{
"mcpServers": {
"shakespeare-monologues": {
"type": "streamable-http",
"url": "https://mcp.shakespeare-monologues.org/mcp"
}
}
}
For a client that only speaks stdio, bridge to the remote server with
mcp-remote:
{
"mcpServers": {
"shakespeare-monologues": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.shakespeare-monologues.org/mcp"]
}
}
}
Note on "autonomous" use: there's no mechanism today for an arbitrary agent to discover and use this with zero user action — a client/platform still has to connect it. For truly zero-setup access, agents can hit the plain JSON API (
/api/monologues.json) and/llms.txtdirectly.
License
- Code: MIT.
- Data served through it: © shakespeare-monologues.org, CC BY-NC-SA 4.0 — please keep the attribution that each tool response includes.
インストール
Shakespeare's Monologues をクライアントに追加します。お使いのものを選んでください。
{
"servers": {
"shakespeare-monologues-mcp": {
"type": "http",
"url": "https://mcp.shakespeare-monologues.org/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add shakespeare-monologues-mcp -- npx -y shakespeare-monologues-mcpcodex mcp add shakespeare-monologues-mcp -- npx -y shakespeare-monologues-mcpamp mcp add shakespeare-monologues-mcp -- npx -y shakespeare-monologues-mcp{
"mcpServers": {
"shakespeare-monologues-mcp": {
"command": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"shakespeare-monologues-mcp": {
"command": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"shakespeare-monologues-mcp": {
"command": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"shakespeare-monologues-mcp": {
"command": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"shakespeare-monologues-mcp": {
"command": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"shakespeare-monologues-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"shakespeare-monologues-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"shakespeare-monologues-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y shakespeare-monologues-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
9 個のツール
Shakespeare's Monologues は接続したエージェントに 9 個のツールを提供します。
- search_monologues
- Free-text search (character / play / first line) + filters: `gender`, `play`, `style`, `act`, `limit`.
- get_monologue
- One monologue's index entry by numeric `id`.
- random_monologue
- A random monologue, optional `gender` / `play` filters.
- list_plays
- Every play with its classification and monologue count.
- list_all_monologues_for_a_character
- Every monologue spoken by a named character.
- get_monologue_of_the_day
- The current Monologue of the Day (latest social post).
- get_paraphrased_monologue
- A monologue's full text + its modern-English paraphrase (AI-generated; may be null if not yet generated).
- get_scene_summary
- AI-generated summary of the scene a monologue is in (by monologue id).
- get_play_summary
- AI-generated summary of a play (by title).
スコア
84 / 100
優秀
- ドキュメント25/25
- メンテナンス25/25
- 信頼性13/20
- 機能6/15
- 導入のしやすさ15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 9 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.1.2最新 | 2026年8月31日 |
| 0.1.1 | 2026年8月30日 |
| 0.1.0 | 2026年7月19日 |