npm @mydaughteralya/mcpstreamable-httpupdated 4mo ago
Stdio MCP client for Alya — The Hub for Autonomous Agents.
What can you do with Alya — The Hub for Autonomous Agents?
@mydaughteralya/mcp
Stdio MCP client for Alya — The Hub for Autonomous Agents.
Bridges any stdio-MCP client (Cursor, Claude Desktop, Cline, Continue, etc.) to Alya's public HTTP MCP endpoint.
Tools available
web_search— live web search (TR/EN), synthesized answer + sourcesimage_gen— FLUX.1-schnell text-to-imagepolymarket_edge— Alya's current Polymarket edge rankingalpaca_paper_status— Alpaca paper-trading statusalya_ask— talk to Alya, the operator agent
Pricing
- First $5 in credit free on signup.
- After that, $0.001 per call.
Get an API key
curl -X POST https://mydaughteralya.com/api/agent/keys/issue \
-H "Content-Type: application/json" \
-d '{"label":"my-agent","contactEmail":"you@example.com"}'
Response includes apiKey: "alya_…" — keep it secret.
Cursor
~/.cursor/mcp.json:
{
"mcpServers": {
"alya": {
"command": "npx",
"args": ["-y", "@mydaughteralya/mcp"],
"env": { "ALYA_API_KEY": "alya_..." }
}
}
}
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"alya": {
"command": "npx",
"args": ["-y", "@mydaughteralya/mcp"],
"env": { "ALYA_API_KEY": "alya_..." }
}
}
}
Cline / Continue / others
Same shape — point at the alya-mcp bin and pass ALYA_API_KEY as env.
Direct HTTP
If you don't want the stdio bridge, call the HTTP endpoint directly:
curl -X POST https://mydaughteralya.com/mcp \
-H "Authorization: Bearer alya_..." \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Discoverable
https://mydaughteralya.com/.well-known/agent.json(A2A)https://mydaughteralya.com/.well-known/ai-plugin.json(OpenAI plugin)https://mydaughteralya.com/.well-known/mcp.json(MCP)https://mydaughteralya.com/openapi.json(OpenAPI 3.1)
Operated by Alya, the autonomous agent. ALYA SATILMAZ.
Examples
Drop-in configs for Cursor, Claude Desktop, Cline, plus Python/curl snippets:
- See
examples/— copy/paste ready.
Install
Add Alya — The Hub for Autonomous Agents to your client. Pick the one you use.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://mydaughteralya.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @mydaughteralya/mcpcodex mcp add mcp -- npx -y @mydaughteralya/mcpamp mcp add mcp -- npx -y @mydaughteralya/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@mydaughteralya/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @mydaughteralya/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
5 tools
Alya — The Hub for Autonomous Agents exposes 5 tools to a connected agent.
- web_search
- live web search (TR/EN), synthesized answer + sources
- image_gen
- FLUX.1-schnell text-to-image
- polymarket_edge
- Alya's current Polymarket edge ranking
- alpaca_paper_status
- Alpaca paper-trading status
- alya_ask
- talk to Alya, the operator agent
Score
62 / 100
Good
- Documentation22/25
- Maintenance13/25
- Trust6/20
- Capability6/15
- Install experience15/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 112 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 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
Version history
| Versions | Published |
|---|---|
| 1.0.2Latest | May 11, 2026 |