personal-mcp
Provides web search and news search capabilities using DuckDuckGo, enabling retrieval of information from the web.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@personal-mcpfind free time slots tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
personal-mcp
Personal concierge MCP server — productivity tools and FastMCP transforms for SLM orchestrator RL training.
What this is
A FastMCP server exposing 22 tools that an LLM/SLM orchestrator can call: calendar, to-do, notes, web search, calculator, scratchpad, task queue, and sandboxed code execution. The server is designed to be:
Safe by default — all state is in-memory and synthetic; no real user data is touched.
RL-friendly — tools return structured, deterministic outputs; destructive actions require explicit confirmation; errors are returned as
{"error": "..."}dicts (not exceptions) so the agent learns to handle malformed input.Transform-ready — three FastMCP transforms are wired in by default (ToolTransform for tags, BM25SearchTransform for on-demand discovery, optional CodeMode for the "write Python to orchestrate tools" pattern).
Related MCP server: production-grade-mcp-agentic-system
Install
pip install -e ".[dev]"This installs fastmcp[code-mode] and ddgs, plus dev tools (pytest, ruff, bandit).
Run
# stdio (for Claude Desktop / MCP Inspector)
fastmcp run server.py
# Streamable HTTP (for ART, DeepAgents, remote clients)
fastmcp run server.py --transport streamable-http --port 8000
# or just:
python server.pyTwo runtime modes
Toggle with the CODE_MODE_ENABLED env var:
default (
CODE_MODE_ENABLED=0): clients see 3 tools —search_tools,call_tool,reset_state— and discover the rest on demand via BM25.code mode (
CODE_MODE_ENABLED=1): clients see 4 meta-tools —tags,search,get_schema,execute— and write Python that chainscall_tool()invocations inside a sandboxed Monty interpreter.
Tools
Category | Tool | Purpose |
State |
| Clear all server state (call between training episodes) |
Calendar |
| Calendar management |
To-do |
| Simple to-do tasks |
Notes |
| Short notes with tag search |
Search |
| DuckDuckGo web + news search |
Math |
| Safe AST-sandboxed arithmetic |
Memory |
| Working memory for multi-step plans |
Planning |
| Explicit task queue for plan decomposition |
Code |
| Sandboxed Python subprocess (5s default timeout) |
Test
pytest test_app.py -v
ruff check server.py test_app.py
bandit -r server.pyThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-quality-maintenanceA lightweight and fast MCP server that enables AI agents to efficiently discover and execute tools through progressive disclosure, minimizing context consumption while supporting safe code execution in external environments.Last updated22
- Alicense-qualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.Last updated52MIT
- Alicense-qualityBmaintenanceA Python FastMCP server with 33 tools that lets AI agents manage tasks, capture knowledge, and coordinate sessions across projects via a unified interface.Last updated10MIT
- Alicense-qualityCmaintenanceA Model Context Protocol server exposing 58 online tools (crypto, data, image, text, etc.) and workflow execution, enabling MCP clients like Claude Desktop to invoke them via natural language.Last updated24MIT
Related MCP Connectors
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kiy-K/personal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server