|
| 1 | +name: graphlit-mcp-server |
| 2 | +image: ghcr.io/stacklok/dockyard/npx/graphlit-mcp-server:1.0.20250808001 |
| 3 | +description: MCP server for Graphlit platform - ingest, search, and retrieve knowledge from multiple sources |
| 4 | +tier: Official |
| 5 | +status: Active |
| 6 | +transport: stdio |
| 7 | +targetport: 0 |
| 8 | +permissions: |
| 9 | + name: "" |
| 10 | + read: [] |
| 11 | + write: [] |
| 12 | + network: |
| 13 | + outbound: |
| 14 | + insecureallowall: true |
| 15 | + allowhost: [] |
| 16 | + allowport: |
| 17 | + - 443 |
| 18 | +tools: |
| 19 | + # Retrieval |
| 20 | + - query_contents |
| 21 | + - query_collections |
| 22 | + - query_feeds |
| 23 | + - query_conversations |
| 24 | + - retrieve_relevant_sources |
| 25 | + - retrieve_similar_images |
| 26 | + - visually_describe_image |
| 27 | + # RAG |
| 28 | + - prompt_llm_conversation |
| 29 | + # Extraction |
| 30 | + - extract_structured_json_from_text |
| 31 | + # Publishing |
| 32 | + - publish_as_audio |
| 33 | + - publish_as_image |
| 34 | + # Ingestion |
| 35 | + - ingest_files |
| 36 | + - ingest_web_pages |
| 37 | + - ingest_messages |
| 38 | + - ingest_posts |
| 39 | + - ingest_emails |
| 40 | + - ingest_issues |
| 41 | + - ingest_text |
| 42 | + - ingest_memory |
| 43 | + # Web |
| 44 | + - web_crawling |
| 45 | + - web_search |
| 46 | + - web_mapping |
| 47 | + - screenshot_page |
| 48 | + # Operations |
| 49 | + - configure_project |
| 50 | + - create_collection |
| 51 | + - add_contents_to_collection |
| 52 | + - remove_contents_from_collection |
| 53 | + - delete_collections |
| 54 | + - delete_feeds |
| 55 | + - delete_contents |
| 56 | + - delete_conversations |
| 57 | + - is_feed_done |
| 58 | + - is_content_done |
| 59 | + # Enumerations |
| 60 | + - list_slack_channels |
| 61 | + - list_microsoft_teams_teams |
| 62 | + - list_microsoft_teams_channels |
| 63 | + - list_sharepoint_libraries |
| 64 | + - list_sharepoint_folders |
| 65 | + - list_linear_projects |
| 66 | + - list_notion_databases |
| 67 | + - list_notion_pages |
| 68 | + - list_dropbox_folders |
| 69 | + - list_box_folders |
| 70 | + - list_discord_guilds |
| 71 | + - list_discord_channels |
| 72 | + - list_google_calendars |
| 73 | + - list_microsoft_calendars |
| 74 | +envvars: |
| 75 | + - name: GRAPHLIT_ENVIRONMENT_ID |
| 76 | + description: Your Graphlit environment ID |
| 77 | + required: true |
| 78 | + default: "" |
| 79 | + secret: false |
| 80 | + - name: GRAPHLIT_ORGANIZATION_ID |
| 81 | + description: Your Graphlit organization ID |
| 82 | + required: true |
| 83 | + default: "" |
| 84 | + secret: false |
| 85 | + - name: GRAPHLIT_JWT_SECRET |
| 86 | + description: Your JWT secret for signing the JWT token |
| 87 | + required: true |
| 88 | + default: "" |
| 89 | + secret: true |
| 90 | + # Optional connector credentials |
| 91 | + - name: SLACK_BOT_TOKEN |
| 92 | + description: Slack bot token for Slack integration |
| 93 | + required: false |
| 94 | + default: "" |
| 95 | + secret: true |
| 96 | + - name: DISCORD_BOT_TOKEN |
| 97 | + description: Discord bot token for Discord integration |
| 98 | + required: false |
| 99 | + default: "" |
| 100 | + secret: true |
| 101 | + - name: TWITTER_TOKEN |
| 102 | + description: Twitter/X API token |
| 103 | + required: false |
| 104 | + default: "" |
| 105 | + secret: true |
| 106 | + - name: GOOGLE_EMAIL_REFRESH_TOKEN |
| 107 | + description: Google refresh token for Gmail integration |
| 108 | + required: false |
| 109 | + default: "" |
| 110 | + secret: true |
| 111 | + - name: GOOGLE_EMAIL_CLIENT_ID |
| 112 | + description: Google client ID for Gmail integration |
| 113 | + required: false |
| 114 | + default: "" |
| 115 | + secret: false |
| 116 | + - name: GOOGLE_EMAIL_CLIENT_SECRET |
| 117 | + description: Google client secret for Gmail integration |
| 118 | + required: false |
| 119 | + default: "" |
| 120 | + secret: true |
| 121 | + - name: LINEAR_API_KEY |
| 122 | + description: Linear API key for Linear integration |
| 123 | + required: false |
| 124 | + default: "" |
| 125 | + secret: true |
| 126 | + - name: GITHUB_PERSONAL_ACCESS_TOKEN |
| 127 | + description: GitHub personal access token |
| 128 | + required: false |
| 129 | + default: "" |
| 130 | + secret: true |
| 131 | + - name: JIRA_EMAIL |
| 132 | + description: Jira email for authentication |
| 133 | + required: false |
| 134 | + default: "" |
| 135 | + secret: false |
| 136 | + - name: JIRA_TOKEN |
| 137 | + description: Jira API token |
| 138 | + required: false |
| 139 | + default: "" |
| 140 | + secret: true |
| 141 | + - name: NOTION_API_KEY |
| 142 | + description: Notion API key for Notion integration |
| 143 | + required: false |
| 144 | + default: "" |
| 145 | + secret: true |
| 146 | +args: [] |
| 147 | +metadata: |
| 148 | + stars: 346 |
| 149 | + pulls: 0 |
| 150 | + lastupdated: 2025-08-11T15:29:09Z |
| 151 | +repositoryurl: https://github.com/graphlit/graphlit-mcp-server |
| 152 | +tags: |
| 153 | + - knowledge-base |
| 154 | + - rag |
| 155 | + - search |
| 156 | + - ingestion |
| 157 | + - data-connectors |
| 158 | +dockertags: [] |
| 159 | +provenance: |
| 160 | + sigstoreurl: tuf-repo-cdn.sigstore.dev |
| 161 | + repositoryuri: https://github.com/stacklok/dockyard |
| 162 | + repositoryref: refs/heads/main |
| 163 | + signeridentity: /.github/workflows/build-containers.yml |
| 164 | + runnerenvironment: github-hosted |
| 165 | + certissuer: https://token.actions.githubusercontent.com |
| 166 | + attestation: null |
| 167 | +custommetadata: {} |
0 commit comments