Skip to content

Quick Start

This guide will get you up and running with TeamLoop in just a few minutes.

Before you begin, you’ll need:

  • A TeamLoop account (sign up at teamloop.io)
  • Claude Desktop or another MCP-compatible client
  • At least one of: GitHub, Notion, or Linear account
  1. Log into TeamLoop at app.teamloop.io
  2. Navigate to Settings > Integrations
  3. Click Connect for each tool you want to use:
    • GitHub - Access repos, issues, PRs, and discussions
    • Notion - Access pages and databases
    • Linear - Access issues and projects
  4. Authorize TeamLoop to access your data

Add TeamLoop to your Claude Desktop configuration:

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
"mcpServers": {
"teamloop": {
"command": "npx",
"args": ["-y", "@teamloop/mcp-server"],
"env": {
"TEAMLOOP_API_KEY": "your-api-key-here"
}
}
}
}

Edit %APPDATA%\Claude\claude_desktop_config.json:

{
"mcpServers": {
"teamloop": {
"command": "npx",
"args": ["-y", "@teamloop/mcp-server"],
"env": {
"TEAMLOOP_API_KEY": "your-api-key-here"
}
}
}
}
  1. Go to Settings > API Keys in TeamLoop
  2. Click Create API Key
  3. Copy the key and paste it into your config

After saving the configuration, restart Claude Desktop to load TeamLoop.

You should see “teamloop” listed in Claude’s MCP servers when you start a new conversation.

Try asking Claude:

“Search my GitHub for authentication-related discussions”

Claude will use TeamLoop to:

  1. Query your connected GitHub
  2. Return relevant results
  3. Prompt you to extract knowledge

When Claude returns results, it will suggest extracting entities. For example:

Found 5 results about authentication...
## Extraction Instructions
Based on these results, I'll extract:
- Decision: "Migrate to OAuth 2.0"
- Component: "Auth Service"
- Person: "Alice (author)"

Confirm the extraction to build your knowledge graph.

Now that you have some knowledge, try temporal queries:

“What did we know about authentication on January 1st?”

“How has our authentication approach evolved from 2024-01-01 to today?”

“Compare our auth decisions from Q1 vs Q4 2024”

Here are some queries to try:

QueryWhat It Does
”Search GitHub for architecture decisions”Find ADR-like content
”What authentication approaches have we discussed?”Build auth knowledge
”Search Notion for product roadmaps”Import planning docs
”Find all decisions about database technology”Track tech choices
”Show me the timeline of infrastructure changes”Temporal view

Now that you’re set up:

  1. MCP Tools Reference - Learn all available tools
  2. Knowledge Graphs - Understand entity types
  3. Subgraphs - Organize your knowledge
  4. Synthesis - Generate documents from knowledge
  • Verify your API key is correct
  • Check that the config JSON is valid (use a JSON validator)
  • Restart Claude Desktop completely
  • Ensure integrations are connected in TeamLoop settings
  • Check that you have access to the repos/pages you’re querying
  • Try a broader search term
  • Ensure your Voyage API key is configured (for embeddings)
  • Check the TeamLoop logs for errors

Need more help? Check our support page or join the community Discord.