Skip to content

Research Server

The research server (servers/research/) provides a structured research pipeline with project management, source tracking, APA citation generation, and bibliography output.

Tools

crow_create_project

Create a new research project.

ParameterTypeRequiredDescription
namestringYesProject name
descriptionstringNoProject description
statusstringNoactive, paused, completed, archived (default: active)

crow_list_projects

List all research projects with optional status filter.

ParameterTypeRequiredDescription
statusstringNoFilter by status

crow_update_project

Update a research project.

ParameterTypeRequiredDescription
project_idnumberYesProject ID
namestringNoNew name
descriptionstringNoNew description
statusstringNoNew status

crow_add_source

Add a source to the research pipeline. Automatically generates an APA citation.

ParameterTypeRequiredDescription
titlestringYesSource title
urlstringNoSource URL
source_typestringNoType (see list below)
authorsstringNoAuthor name(s)
publication_datestringNoPublication date
publisherstringNoPublisher name
doistringNoDOI identifier
abstractstringNoSource abstract/summary
tagsstringNoComma-separated tags
project_idnumberNoLink to a project
notesstringNoInitial notes

Source types: web_article, academic_paper, book, interview, web_search, web_scrape, api_data, document, video, podcast, social_media, government_doc, dataset, other

crow_search_sources

Search sources using full-text search.

ParameterTypeRequiredDescription
querystringYesSearch query
source_typestringNoFilter by type
project_idnumberNoFilter by project
limitnumberNoMax results

crow_get_source

Get full details of a specific source.

ParameterTypeRequiredDescription
source_idnumberYesSource ID

crow_verify_source

Mark a source's verification status.

ParameterTypeRequiredDescription
source_idnumberYesSource ID
verifiedbooleanYesVerification status
verification_notesstringNoNotes about verification

crow_list_sources

List sources with optional filtering.

ParameterTypeRequiredDescription
project_idnumberNoFilter by project
source_typestringNoFilter by type
verifiedbooleanNoFilter by verification status
limitnumberNoMax results

crow_add_note

Add a research note linked to a source.

ParameterTypeRequiredDescription
source_idnumberYesSource to link note to
contentstringYesNote content
note_typestringNoType: summary, quote, analysis, question, methodology

crow_search_notes

Search research notes.

ParameterTypeRequiredDescription
querystringYesSearch query
source_idnumberNoFilter by source

crow_generate_bibliography

Generate a formatted bibliography for a project.

ParameterTypeRequiredDescription
project_idnumberYesProject ID
formatstringNoCitation format (default: APA)

crow_research_stats

Get statistics about the research pipeline. No parameters.

Resources

research://projects

Returns the list of all research projects.

APA Citation Generation

The server automatically generates APA citations when adding sources. The citation format varies by source type:

  • Academic papers: Author (Year). Title. Publisher. DOI/URL
  • Books: Author (Year). *Title*. Publisher.
  • Web articles: Author (Year). Title. Site Name. URL
  • Other types: Standard APA format with available fields

Released under the MIT License.