Sources are external data connections that enable your AI agents to interact with APIs, services, and local files. They replace traditional hardcoded integrations with a flexible, workspace-scoped architecture.
Three Source Types
Sources connect to data through three different mechanisms:
MCP Servers - Remote or local Model Context Protocol servers
API Sources - REST APIs with automatic authentication
Local Files - Filesystem paths, Obsidian vaults, Git repositories
The guide.md file provides usage instructions for the AI agent:
# Linear## ScopeIssue tracking, bugs, tasks, sprints, and project management## Guidelines- Always search for existing issues before creating new ones- Use specific queries with filters (status, assignee, labels)- Check project context before assigning issues## ContextLinear is our primary issue tracker. All engineering tasks flow through Linear.Team uses weekly sprints with Monday planning meetings.## Cache```json{ "recentProjects": ["ENG", "DESIGN", "PRODUCT"], "commonLabels": ["bug", "feature", "urgent"]}
<Accordion title="Why guide.md?"> The guide provides agent-specific context about: - What data is available in this source - How to query it effectively - Team conventions and workflows - Cached metadata to reduce API calls</Accordion>## Source Types Comparison<CardGroup cols={3}> <Card title="MCP Sources" icon="server" color="#8B5CF6" href="/features/sources/mcp-servers"> Full-featured servers with tools, prompts, and resources. Supports HTTP, SSE, and stdio transports. </Card> <Card title="API Sources" icon="code" color="#8B5CF6" href="/features/sources/api-sources"> REST APIs with automatic auth injection. OAuth flows for Google, Slack, Microsoft. </Card> <Card title="Local Files" icon="folder" color="#8B5CF6" href="/features/sources/local-files"> Direct filesystem access. Obsidian vaults, Git repos, SQLite databases. </Card></CardGroup>## Next Steps<CardGroup cols={2}> <Card title="Configure MCP Servers" icon="server" href="/features/sources/mcp-servers"> Connect remote or local MCP servers with OAuth or bearer tokens </Card> <Card title="Add API Sources" icon="api" href="/features/sources/api-sources"> Integrate REST APIs with built-in OAuth flows </Card></CardGroup>