Read, create, and install your ParetoStudio prompts, agents, and skills from any MCP client.
MCPpedia last refreshed this data
io.paretostudio/paretostudio-mcp is an MCP server that read, create, and install your ParetoStudio prompts, agents, and skills from any MCP client. Its tool list has not been published yet over stdio, requires no API key, and scores 55/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-paretostudio-paretostudio-mcp": {
"command": "npx",
"args": [
"-y",
"paretostudio-mcp"
]
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Read, create, and install your ParetoStudio prompts, agents, and skills from any MCP client.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'paretostudio-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked paretostudio-mcp against OSV.dev.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Transport for TMCP using STDIO
The graph based agentic IDE
Buddhist canon tools: search, passages, cross-canon parallels, dictionaries — all URN-cited.
MCP Security Weekly
Get CVE alerts and security updates for io.paretostudio/paretostudio-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Read your ParetoStudio prompt, agent, and skill library from Claude Code, Cursor, and any MCP client. Install agents and skills as files into Claude Code.
Go to paretostudio.io/settings and navigate to Developer, then create an API Key.
Claude Code (.mcp.json in your project root):
{
"mcpServers": {
"paretostudio": {
"command": "npx",
"args": ["-y", "paretostudio-mcp@latest"],
"env": {
"PARETOSTUDIO_API_KEY": "psk_your_key_here"
}
}
}
}
Cursor (Settings > MCP):
{
"mcpServers": {
"paretostudio": {
"command": "npx",
"args": ["-y", "paretostudio-mcp@latest"],
"env": {
"PARETOSTUDIO_API_KEY": "psk_your_key_here"
}
}
}
}
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"paretostudio": {
"command": "npx",
"args": ["-y", "paretostudio-mcp@latest"],
"env": {
"PARETOSTUDIO_API_KEY": "psk_your_key_here"
}
}
}
}
Codex (~/.codex/config.toml):
[mcp_servers.paretostudio]
command = "npx"
args = ["-y", "paretostudio-mcp@latest"]
[mcp_servers.paretostudio.env]
PARETOSTUDIO_API_KEY = "psk_your_key_here"
Ask Codex, Claude, or your MCP client to "list my prompts" or "install my agent" — the tools are available automatically.
| Tool | Description |
|---|---|
list_prompts | List all prompts in your library |
get_prompt | Get full prompt content (all 6 steps) |
search_prompts | Search prompts by title or description |
list_agents | List all agents |
get_agent | Get agent with full configuration |
search_agents | Search agents |
list_skills | List all skills |
get_skill | Get skill with full configuration |
search_skills | Search skills |
install_skill | Install skill for Claude or Codex project layouts |
install_agent | Download agent to .claude/agents/ |
install_bundle | Install agent + skills in one operation |
create_prompt | Create a new prompt |
update_prompt | Update a prompt |
delete_prompt | Delete a prompt |
create_skill | Create a new skill |
update_skill | Update a skill |
delete_skill | Delete a skill |
create_agent | Create a new agent |
update_agent | Update an agent |
delete_agent | Delete an agent |
Install tools never overwrite existing files by default. Pass overwrite: true
only when you intentionally want to replace an installed agent or skill.
For Codex project skills, call install_skill with client: "codex"; the skill
is written to .agents/skills/<name>/SKILL.md instead of .claude/skills/.
Write tools respect your plan's library caps (Free: 5 prompts / 2 agents / 2 skills; Pro and Team: unlimited).
| Plan | Daily Requests | Write Access |
|---|---|---|
| Free | 50 | Yes — within plan caps (5 prompts / 2 agents / 2 skills) |
| Pro | 500 | Yes — unlimited |
| Team | 500 | Yes — unlimited, shared team library |
| Variable | Required | Default | Description |
|---|---|---|---|
PARETOSTUDIO_API_KEY | Yes | -- | Your API key (starts with psk_) |
PARETOSTUDIO_API_URL | No | https://paretostudio.io | API base URL |
The server source lives in the ParetoStudio application repository, because it
imports the same business rules the API enforces (src/rules/) — duplicating them
here would let the two drift apart. This repository is the public home of the
published package: the manifest registries read, the configuration examples, and
the documentation.
Releases are automatic: a version bump reaching main publishes to npm, and a CI
gate refuses a build whose server changed since the last bump.