mcp-service
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., "@mcp-servicesearch the web for AI trends"
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.
mcp-service
Shared tool + skill host with two faces:
Standard MCP at
/mcp/(Streamable-HTTP, officialmcpSDK). Any MCP client connects and getstools/list·tools/call·prompts/list·prompts/get. Tools → MCP tools; skills → MCP prompts. This is the reusable, interoperable surface other tools/agents connect to.Management REST — CRUD for tools + skills (the job2cool admin UI), plus
POST /tools/{name}/invokeandGET /tools/manifest. (MCP is a consumption protocol, not authoring — so authoring lives here.)
Model
Tools are declarative catalog entries (name, JSON-schema, which built-in
impl, config, enabled). Implementations ship with the service (app/toolimpl.py); the UI never authors executable code (secure by design).Skills are reusable instruction templates (content + triggers). Exposed as MCP prompts. Trigger-based auto-injection is a consumer concern.
Related MCP server: Friday MCP Server
Networks
noted-network— apps (job2cool-backend) reach mcp-service.mcp_internal— mcp-service reaches the isolatedwebsearch_server.web_searchdelegates towebsearch_server /search.
REST quick-ref (default ?app=job2cool)
GET /health
GET /tools GET /tools/manifest
PUT /tools/{name} DELETE /tools/{name}
POST /tools/{name}/invoke {"args": {...}}
GET /skills PUT /skills/{name} DELETE /skills/{name}Run
docker network create mcp_internal # shared with websearch_server (once)
docker compose up -d --build
curl -s localhost:4950/health
curl -s -XPOST localhost:4950/tools/web_search/invoke \
-H 'content-type: application/json' -d '{"args":{"query":"kubernetes operator pattern","max_results":3}}'This 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.
Latest Blog Posts
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/logus2k/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server