|
1364 | 1364 | },
|
1365 | 1365 | "perplexity-ask": {
|
1366 | 1366 | "args": [],
|
1367 |
| - "description": "", |
| 1367 | + "description": "An MCP server implementation that integrates Perplexity AI's Sonar API for live web searches, in-depth research, and reasoning tasks.", |
1368 | 1368 | "env_vars": [
|
1369 | 1369 | {
|
1370 | 1370 | "description": "Perplexity API key",
|
|
1375 | 1375 | ],
|
1376 | 1376 | "image": "mcp/perplexity-ask:latest",
|
1377 | 1377 | "metadata": {
|
1378 |
| - "last_updated": "2025-06-17T00:21:50Z", |
1379 |
| - "pulls": 8120, |
1380 |
| - "stars": 54102 |
| 1378 | + "last_updated": "2025-06-17T12:03:17-04:00", |
| 1379 | + "pulls": 8368, |
| 1380 | + "stars": 1249 |
1381 | 1381 | },
|
1382 | 1382 | "permissions": {
|
1383 | 1383 | "network": {
|
|
1397 | 1397 | "read": [],
|
1398 | 1398 | "write": []
|
1399 | 1399 | },
|
1400 |
| - "repository_url": "https://github.com/modelcontextprotocol/servers", |
| 1400 | + "repository_url": "https://github.com/ppl-ai/modelcontextprotocol", |
1401 | 1401 | "tags": [
|
1402 | 1402 | "ask",
|
1403 | 1403 | "perplexity",
|
1404 | 1404 | "perplexity-ask"
|
1405 | 1405 | ],
|
1406 |
| - "tools": [], |
| 1406 | + "tools": [ |
| 1407 | + "perplexity_ask", |
| 1408 | + "perplexity_research", |
| 1409 | + "perplexity_reason" |
| 1410 | + ], |
1407 | 1411 | "transport": "stdio"
|
1408 | 1412 | },
|
1409 | 1413 | "postgres": {
|
|
1513 | 1517 | "redis": {
|
1514 | 1518 | "args": [],
|
1515 | 1519 | "description": "A Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.",
|
1516 |
| - "env_vars": [], |
| 1520 | + "env_vars": [ |
| 1521 | + { |
| 1522 | + "description": "Redis IP or hostname (default \"127.0.0.1\")", |
| 1523 | + "name": "REDIS_HOST", |
| 1524 | + "required": true |
| 1525 | + }, |
| 1526 | + { |
| 1527 | + "description": "Redis port (default 6379)", |
| 1528 | + "name": "REDIS_PORT", |
| 1529 | + "required": false |
| 1530 | + }, |
| 1531 | + { |
| 1532 | + "description": "Redis database number (default 0)", |
| 1533 | + "name": "REDIS_DB", |
| 1534 | + "required": false |
| 1535 | + }, |
| 1536 | + { |
| 1537 | + "description": "Redis username (default \"default\")", |
| 1538 | + "name": "REDIS_USERNAME", |
| 1539 | + "required": false |
| 1540 | + }, |
| 1541 | + { |
| 1542 | + "description": "Redis password (default empty)", |
| 1543 | + "name": "REDIS_PWD", |
| 1544 | + "required": false, |
| 1545 | + "secret": true |
| 1546 | + }, |
| 1547 | + { |
| 1548 | + "description": "Redis TLS connection (True|False, default False)", |
| 1549 | + "name": "REDIS_SSL", |
| 1550 | + "required": false |
| 1551 | + }, |
| 1552 | + { |
| 1553 | + "description": "CA certificate for verifying server", |
| 1554 | + "name": "REDIS_CA_PATH", |
| 1555 | + "required": false |
| 1556 | + }, |
| 1557 | + { |
| 1558 | + "description": "Client's private key file for client authentication", |
| 1559 | + "name": "REDIS_SSL_KEYFILE", |
| 1560 | + "required": false |
| 1561 | + }, |
| 1562 | + { |
| 1563 | + "description": "Client's certificate file for client authentication", |
| 1564 | + "name": "REDIS_SSL_CERTFILE", |
| 1565 | + "required": false |
| 1566 | + }, |
| 1567 | + { |
| 1568 | + "description": "Whether the client should verify the server's certificate (default \"required\")", |
| 1569 | + "name": "REDIS_CERT_REQS", |
| 1570 | + "required": false |
| 1571 | + }, |
| 1572 | + { |
| 1573 | + "description": "Path to the trusted CA certificates file", |
| 1574 | + "name": "REDIS_CA_CERTS", |
| 1575 | + "required": false |
| 1576 | + }, |
| 1577 | + { |
| 1578 | + "description": "Enable Redis Cluster mode (True|False, default False)", |
| 1579 | + "name": "REDIS_CLUSTER_MODE", |
| 1580 | + "required": false |
| 1581 | + }, |
| 1582 | + { |
| 1583 | + "description": "Use the stdio or sse transport (default stdio)", |
| 1584 | + "name": "MCP_TRANSPORT", |
| 1585 | + "required": false |
| 1586 | + } |
| 1587 | + ], |
1517 | 1588 | "image": "mcp/redis:latest",
|
1518 | 1589 | "metadata": {
|
1519 |
| - "last_updated": "2025-06-17T00:21:53Z", |
1520 |
| - "pulls": 5606, |
1521 |
| - "stars": 54102 |
| 1590 | + "last_updated": "2025-06-17T12:03:55-04:00", |
| 1591 | + "pulls": 5691, |
| 1592 | + "stars": 93 |
1522 | 1593 | },
|
1523 | 1594 | "permissions": {
|
1524 | 1595 | "network": {
|
|
1537 | 1608 | "read": [],
|
1538 | 1609 | "write": []
|
1539 | 1610 | },
|
1540 |
| - "repository_url": "https://github.com/modelcontextprotocol/servers", |
| 1611 | + "repository_url": "https://github.com/redis/mcp-redis", |
1541 | 1612 | "tags": [
|
1542 | 1613 | "redis",
|
1543 | 1614 | "database",
|
|
1547 | 1618 | "data"
|
1548 | 1619 | ],
|
1549 | 1620 | "tools": [
|
| 1621 | + "dbsize", |
| 1622 | + "info", |
| 1623 | + "client_list", |
| 1624 | + "delete", |
| 1625 | + "type", |
| 1626 | + "expire", |
| 1627 | + "rename", |
| 1628 | + "scan_keys", |
| 1629 | + "scan_all_keys", |
| 1630 | + "get_indexes", |
| 1631 | + "get_index_info", |
| 1632 | + "get_indexed_keys_number", |
| 1633 | + "create_vector_index_hash", |
| 1634 | + "vector_search_hash", |
| 1635 | + "hset", |
| 1636 | + "hget", |
| 1637 | + "hdel", |
| 1638 | + "hgetall", |
| 1639 | + "hexists", |
| 1640 | + "set_vector_in_hash", |
| 1641 | + "get_vector_from_hash", |
| 1642 | + "lpush", |
| 1643 | + "rpush", |
| 1644 | + "lpop", |
| 1645 | + "rpop", |
| 1646 | + "lrange", |
| 1647 | + "llen", |
1550 | 1648 | "set",
|
1551 | 1649 | "get",
|
1552 |
| - "delete", |
1553 |
| - "list" |
| 1650 | + "json_set", |
| 1651 | + "json_get", |
| 1652 | + "json_del", |
| 1653 | + "zadd", |
| 1654 | + "zrange", |
| 1655 | + "zrem", |
| 1656 | + "sadd", |
| 1657 | + "srem", |
| 1658 | + "smembers", |
| 1659 | + "xadd", |
| 1660 | + "xrange", |
| 1661 | + "xdel", |
| 1662 | + "publish", |
| 1663 | + "subscribe", |
| 1664 | + "unsubscribe" |
1554 | 1665 | ],
|
1555 | 1666 | "transport": "stdio"
|
1556 | 1667 | },
|
|
0 commit comments